AhaiCardImageWithCopyWidgetModel.fromMap constructor

AhaiCardImageWithCopyWidgetModel.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory AhaiCardImageWithCopyWidgetModel.fromMap(Map<String, dynamic> json) =>
    AhaiCardImageWithCopyWidgetModel(
      key: json["key"] ?? "",
      src: json["src"] ?? "",
      bgmi: json["bgmi"] ?? "",
      global: json["global"] ?? "",
    );