requestWith method
Implementation
@override
Future<String?> requestWith(String tpn) async {
try {
final String? response = await _methodChannel.invokeMethod('requestWith', {
'tpn': tpn,
});
return response;
} on PlatformException catch (e) {
throw Exception('Failed to request with: ${e.message}');
}
}