MFResourceRequest constructor
Implementation
MFResourceRequest(String url, String method,
{int timeout, String scope, String backendServiceName}) {
if (timeout == null) {
timeout = 3000;
}
if (scope == null) {
scope = "";
}
if (backendServiceName == null) {
backendServiceName = "";
}
_channel.invokeMethod(WLRESOURCEREQUEST_INIT, <String, dynamic>{
UUID: _uuid,
URL: url,
METHOD: method,
TIMEOUT: timeout,
SCOPE: scope,
BACKEND_SERVICE: backendServiceName
});
}