TimeBasedLinear.fromJson constructor
Implementation
factory TimeBasedLinear.fromJson(Map<String, dynamic> json) {
return TimeBasedLinear(
linearInterval: json['linearInterval'] as int?,
linearPercentage: json['linearPercentage'] as int?,
);
}