reset method

Future<int> reset()

*reset

This will just reset to the default status of the printer and will not clean any buffer

Implementation

Future<int> reset() async {
  int? _reset = await platform?.invokeMethod('reset') ?? 9999;

  if (_reset < 0) {
    throw ElginException(_reset);
  }
  return _reset;
}