reset method
*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;
}