stringify property

({String Function([dynamic value, dynamic replacer(String, [dynamic])?, Object? space]) $1, String Function([dynamic value, List<Object>? replacer, Object? space]) $2}) get stringify

Overload accessor: $1, $2

Implementation

({
  /// Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
  ///  @param value A JavaScript value, usually an object or array, to be converted.
  ///  @param replacer A function that transforms the results.
  ///  @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
  _i2.String Function([
    _i2.dynamic value,
    _i2.dynamic Function(
      _i2.String, [
      _i2.dynamic,
    ])? replacer,
    _i2.Object? space,
  ]) $1,

  /// Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
  ///  @param value A JavaScript value, usually an object or array, to be converted.
  ///  @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.
  ///  @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
  _i2.String Function([
    _i2.dynamic value,
    _i2.List<_i2.Object>? replacer,
    _i2.Object? space,
  ]) $2,
}) get stringify => (
      $1: _stringify$1,
      $2: _stringify$2,
    );