getAll method

Future getAll ([Map options ])

Implementation

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