releasePlatformResource method
Implementation
@override
Future<void> releasePlatformResource(String resourceId) async {
await _methodChannel.invokeMethod<String>(
'releasePlatformResource',
{
"resourceId": resourceId
}
).catchError(convertPlatformException);
return;
}