getMethod method

Future<String> getMethod ()

Implementation

Future<String> getMethod() async {
  final String method = await _channel.invokeMethod(
      WLRESOURCEREQUEST_GET_METHOD, <String, dynamic>{UUID: _uuid});
  return method;
}