MicroPercentRange.fromJson constructor
MicroPercentRange.fromJson(
- Map json_
Implementation
MicroPercentRange.fromJson(core.Map json_)
: this(
microPercentLowerBound: json_.containsKey('microPercentLowerBound')
? json_['microPercentLowerBound'] as core.int
: null,
microPercentUpperBound: json_.containsKey('microPercentUpperBound')
? json_['microPercentUpperBound'] as core.int
: null,
);