FloatingPointMean.fromJson constructor
FloatingPointMean.fromJson(
- Map json_
Implementation
FloatingPointMean.fromJson(core.Map json_)
: this(
count: json_.containsKey('count')
? SplitInt64.fromJson(
json_['count'] as core.Map<core.String, core.dynamic>)
: null,
sum: json_.containsKey('sum')
? (json_['sum'] as core.num).toDouble()
: null,
);