handleMethodCall method

Future handleMethodCall(
  1. MethodCall call
)

Implementation

Future<dynamic> handleMethodCall(MethodCall call) async {
  switch (call.method) {
    case "onApplicationFocusChanged":
      _onApplicationFocusChange(call.arguments as bool);
      break;
    default:
      break;
  }
}