emitGlobalError method

  1. @override
Future<void> emitGlobalError(
  1. String code,
  2. String message
)

Implementation

@override
Future<void> emitGlobalError(String code, String message) async {
  _eventStreamController
      .addError(PlatformException(code: code, message: message));
}