MessageBean.fromJson constructor
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"],
);