reset static method

Future<void> reset()

Resets the stored data

The methods throws a LgcreException if resetting data fails. This method is transactional and can be executed concurrently with other transactional methods

Implementation

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

}