ExtendedValue.fromJson constructor

ExtendedValue.fromJson(
  1. Map json_
)

Implementation

ExtendedValue.fromJson(core.Map json_)
  : this(
      boolValue: json_['boolValue'] as core.bool?,
      errorValue:
          json_.containsKey('errorValue')
              ? ErrorValue.fromJson(
                json_['errorValue'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      formulaValue: json_['formulaValue'] as core.String?,
      numberValue: (json_['numberValue'] as core.num?)?.toDouble(),
      stringValue: json_['stringValue'] as core.String?,
    );