Class: FlutterRb::FlutterRbConfig
- Inherits:
-
Object
- Object
- FlutterRb::FlutterRbConfig
- Defined in:
- lib/flutter_rb/config/flutter_rb_config.rb
Overview
FlutterRb configuration representation from config in Flutter plugin
Instance Attribute Summary collapse
-
#android_checks ⇒ Object
Returns the value of attribute android_checks.
-
#flutter_checks ⇒ Object
Returns the value of attribute flutter_checks.
-
#ios_checks ⇒ Object
Returns the value of attribute ios_checks.
Instance Method Summary collapse
-
#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig
constructor
A new instance of FlutterRbConfig.
Constructor Details
#initialize(flutter_checks, android_checks, ios_checks) ⇒ FlutterRbConfig
Returns a new instance of FlutterRbConfig.
7 8 9 10 11 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 7 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_checks ⇒ Object
Returns the value of attribute android_checks.
13 14 15 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 13 def android_checks @android_checks end |
#flutter_checks ⇒ Object
Returns the value of attribute flutter_checks.
13 14 15 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 13 def flutter_checks @flutter_checks end |
#ios_checks ⇒ Object
Returns the value of attribute ios_checks.
13 14 15 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 13 def ios_checks @ios_checks end |