IntegerGauge.fromJson constructor
IntegerGauge.fromJson(
- Map json_
Implementation
IntegerGauge.fromJson(core.Map json_)
: this(
timestamp: json_.containsKey('timestamp')
? json_['timestamp'] as core.String
: null,
value: json_.containsKey('value')
? SplitInt64.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>)
: null,
);