printEscPosCommands method

  1. @override
Future<void> printEscPosCommands(
  1. String printerId,
  2. Uint8List commands
)
override

Implementation

@override
Future<void> printEscPosCommands(String printerId, Uint8List commands) async {
  await methodChannel
      .invokeMethod<void>('printEscPosCommands', <String, dynamic>{
    'printerId': printerId,
    'commands': commands,
  });
}