getDeviceFormattingStatus method
Implementation
Future<Map<String, dynamic>> getDeviceFormattingStatus(
String deviceSerial,
) async {
// V3 API - GET request
return _client.post('/api/v3/device/format/status', {
'deviceSerial': deviceSerial,
});
}