ITFParams.fromJson constructor

ITFParams.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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