create property

({dynamic Function([Object? o]) $1, dynamic Function(Object properties, [Object? o]) $2}) get create

Overload accessor: $1, $2

Implementation

({
  /// Creates an object that has the specified prototype or that has null prototype.
  ///  @param o Object to use as a prototype. May be null.
  _i2.dynamic Function([_i2.Object? o]) $1,

  /// Creates an object that has the specified prototype, and that optionally contains specified properties.
  ///  @param o Object to use as a prototype. May be null
  ///  @param properties JavaScript object that contains one or more property descriptors.
  _i2.dynamic Function(
    _i2.Object properties, [
    _i2.Object? o,
  ]) $2,
}) get create => (
      $1: _create$1,
      $2: _create$2,
    );