setup method

void setup({
  1. String appKey = '',
  2. bool production = false,
  3. String channel = '',
  4. bool debug = false,
})
override

Implementation

void setup({
  String appKey = '',
  bool production = false,
  String channel = '',
  bool debug = false,
}) {
  print(flutter_log + "setup:");

  _channel.invokeMethod('setup', {
    'appKey': appKey,
    'channel': channel,
    'production': production,
    'debug': debug
  });
}