init method

dynamic init(
  1. String apiKey,
  2. String country,
  3. String environment
)

Implementation

init(String apiKey, String country, String environment) async {
  final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
      MFConstants.channelName.loadConfig, codec,
      binaryMessenger: _binaryMessenger);
  channel.send(<Object?>[apiKey, country, environment]);
}