get method Null safety

Future get (
  1. [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));
}