setup static method

void setup(
  1. SetupOptions options
)

SETUP Setups a plugin api_key can be found in settings as "SDK key" for each project

Implementation

/// Setups a plugin
/// api_key can be found in settings as "SDK key" for each project
static void setup(SetupOptions options) async {
  await _channel
      .invokeMethod('setupBridge', {"options": jsonEncode(options.toJson())});
}