Class: FlutterRb::FlutterRbConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/flutter_rb/config/flutter_rb_config.rb

Overview

FlutterRb configuration representation from config in Flutter plugin

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig

Returns a new instance of FlutterRbConfig.

Parameters:



9
10
11
12
13
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 9

def initialize(flutter_checks, android_checks, ios_checks)
  @flutter_checks = flutter_checks
  @android_checks = android_checks
  @ios_checks = ios_checks
end

Instance Attribute Details

#android_checksObject

Returns the value of attribute android_checks.



15
16
17
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 15

def android_checks
  @android_checks
end

#flutter_checksObject

Returns the value of attribute flutter_checks.



15
16
17
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 15

def flutter_checks
  @flutter_checks
end

#ios_checksObject

Returns the value of attribute ios_checks.



15
16
17
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 15

def ios_checks
  @ios_checks
end