set property

({void Function(String name, Object value) $1, void Function(String name, String value) $2, void Function(String name, Blob blobValue, [String? filename]) $3}) set

Overload accessor: $1, $2, $3

Implementation

({
  /// [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set)
  void Function(
    _i2.String name,
    _i2.Object value,
  ) $1,

  /// [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set)
  void Function(
    _i2.String name,
    _i2.String value,
  ) $2,

  /// [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set)
  void Function(
    _i2.String name,
    _i3.Blob blobValue, [
    _i2.String? filename,
  ]) $3,
}) get set => (
      $1: _set$1,
      $2: _set$2,
      $3: _set$3,
    );