getRequestById method
Implementation
@override
Future<String?> getRequestById({required String id}) async {
try {
final result = await methodChannel.invokeMethod('getRequestById', {
'id': id,
});
return result;
} on PlatformException {
rethrow;
}
}