FixedOrPercent.fromJson constructor

FixedOrPercent.fromJson(
  1. Map json_
)

Implementation

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