getLastError method

  1. @override
Future<String?> getLastError()
override

Reads last runtime error.

Implementation

@override
/// Reads last runtime error.
Future<String?> getLastError() {
  return methodChannel.invokeMethod<String>('getLastError');
}