initializePrinter method

  1. @override
Future<void> initializePrinter({
  1. int height = 0,
  2. int offset = 0,
  3. int count = 1,
})
override

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});
}