invokeInstanceMethod<T> method
Implementation
@protected
Future<T> invokeInstanceMethod<T>(String method, {dynamic arguments}) async {
final value = await _invokeMethod<T>(method, arguments);
if (value != null) {
return value;
} else {
throw ArgumentError.notNull("$method result");
}
}