registerNativeCallback static method

void registerNativeCallback()

Implementation

static void registerNativeCallback() {
  _channel.setMethodCallHandler((call) async {
    return await onNativeCall(call.method, call.arguments);
  });
}