warmUp method
Triggers the SoftPOS warm-up process.
Implementation
@override
Future<String?> warmUp() async {
try {
final result = await methodChannel.invokeMethod<String>('warmUp');
return result;
} on PlatformException catch (e) {
return e.message;
}
}