NumericValue.fromJson constructor

NumericValue.fromJson(
  1. Map _json
)

Implementation

NumericValue.fromJson(core.Map _json)
    : this(
        doubleValue: _json.containsKey('doubleValue')
            ? (_json['doubleValue'] as core.num).toDouble()
            : null,
        int64Value: _json.containsKey('int64Value')
            ? _json['int64Value'] as core.String
            : null,
      );