BarcodeMappedData.fromJson constructor

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

Implementation

factory BarcodeMappedData.fromJson(Map<String, dynamic> json) =>
    BarcodeMappedData(
      title: json["title"] as String,
      subtitle: json["subtitle"] as String,
      barcodeImage: json["barcodeImage"] as String,
    );