MessageBean.fromJson constructor

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

Implementation

factory MessageBean.fromJson(Map<String, dynamic> json) => MessageBean(
      title: json["title"],
      message: json["message"],
      type: json["type"],
      versionCode: json["versionCode"],
      isHs: json["isHs"],
      isSmallScreen: json["isSmallScreen"],
    );