initializePrinter method
Implementation
@override
Future<void> initializePrinter({int height = 0, int offset = 0, int count = 1}) {
return methodChannel.invokeMethod<void>('initializePrinter', {'height': height, 'offset': offset, 'count': count > 0 ? count : 1});
}