printSmartSequence method
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;
}