getError method

  1. @override
Future<String?> getError(
  1. int id
)
override

Implementation

@override
Future<String?> getError(int id) async {
  return await methodChannel.invokeMethod<String?>(ImpulsePlayerPluginConstants.MethodGetError, {
    ImpulsePlayerPluginConstants.ParameterId: id,
  });
}