$NumericValue.fromJson constructor
$NumericValue.fromJson(
- 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,
);