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.
4 5 6 7 8 9 10 11 12 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 4 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.
14 15 16 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 14 def android_checks @android_checks end |
#flutter_checks ⇒ Object
Returns the value of attribute flutter_checks.
14 15 16 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 14 def flutter_checks @flutter_checks end |
#ios_checks ⇒ Object
Returns the value of attribute ios_checks.
14 15 16 |
# File 'lib/flutter_rb/config/flutter_rb_config.rb', line 14 def ios_checks @ios_checks end |