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.



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_checksObject

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_checksObject

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_checksObject

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