ITFParams.fromJson constructor
Implementation
ITFParams.fromJson(Map<String, dynamic> json) {
borderThickness = json['borderThickness'] == null
? null
: json['borderThickness'].toDouble();
borderType = ITF14BorderType.fromJson(json['borderType']);
quietZoneCoef = json['quietZoneCoef'];
}