remove property

({void Function() $1, void Function(num index) $2}) remove

Overload accessor: $1, $2

Implementation

({
  /// Removes an element from the collection.
  ///  @param index Number that specifies the zero-based index of the element to remove from the collection.
  ///
  ///  [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/remove)
  void Function() $1,

  /// Removes an element from the collection.
  void Function(_i2.num index) $2,
}) get remove => (
      $1: _remove$1,
      $2: _remove$2,
    );