class Pod::Command::Flutter

Public Class Methods

new(argv) click to toggle source
Calls superclass method
# File lib/cocoapods-flutter/command/flutter.rb, line 12
def initialize(argv)
  @help = argv.flag?('help')
  super
end

Public Instance Methods

validate!() click to toggle source
Calls superclass method
# File lib/cocoapods-flutter/command/flutter.rb, line 17
def validate!
  super
  banner! if @help
end