printSmartSequence method

  1. @override
Future<bool> printSmartSequence(
  1. List<Map<String, dynamic>> labelDataList
)
override

Print a sequence of smart labels with gap detection

Implementation

@override
Future<bool> printSmartSequence(List<Map<String, dynamic>> labelDataList) async {
  final result = await methodChannel.invokeMethod<bool>('printSmartSequence', {
    'labelDataList': labelDataList,
  });
  return result ?? false;
}