Scandata.fromJson constructor

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

Implementation

factory Scandata.fromJson(Map<String, dynamic> json) => Scandata(
  name: json["name"],
  image: json["image"],
  msg: json["msg"],
);