isMtpModeEnabled method
Implementation
@override
Future<bool> isMtpModeEnabled() async {
// Make sure this matches your Android implementation exactly
final result = await methodChannel.invokeMethod<bool>('isMtpModeEnabled');
return result ?? false;
}