FixedOrPercent.fromJson constructor
FixedOrPercent.fromJson(
- Map json_
Implementation
FixedOrPercent.fromJson(core.Map json_)
: this(
fixed: json_['fixed'] as core.int?,
percent: json_['percent'] as core.int?,
);