getRequestById method

  1. @override
Future<String?> getRequestById({
  1. required String id,
})
override

Implementation

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