BannerEntity.fromJson constructor

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

Implementation

factory BannerEntity.fromJson(Map<String, dynamic> json) => BannerEntity(
	data: List<Datum>.from(json["data"].map((x) => Datum.fromJson(x))),
	errorCode: json["errorCode"],
	errorMsg: json["errorMsg"],
);