get method

Future get ([Map options ])

Implementation

Future get([Map options]) {
  var options_dict = null;
  if (options != null) {
    options_dict = convertDartToNative_Dictionary(options);
  }
  return promiseToFuture(JS("", "#.get(#)", this, options_dict));
}