release static method

Future<void> release()

Releases the resources used by the library. This method cannot be called while other methods such as run, addData, removeData or reset are being called

Implementation

static Future<void> release() async
{
  try
  {
    await _channel.invokeMethod('release');
  } on PlatformException catch (e)
  {
    throw new LgcreException('${e.message}');
  }
}