onReceivedFromNative method

  1. @override
Future<void> onReceivedFromNative(
  1. MethodCall call
)
override

Implementation

@override
Future<void> onReceivedFromNative(MethodCall call) async {
  if (call.method == FinalStatusConstants.onResult) {
    _onResult(FinalStatusResult(call.arguments));
  }
}