MessageBean constructor

MessageBean({
  1. required String title,
  2. required String message,
  3. required int type,
  4. required int versionCode,
  5. required bool isHs,
  6. required bool isSmallScreen,
})

Implementation

MessageBean({
  required this.title,
  required this.message,
  required this.type,
  required this.versionCode,
  required this.isHs,
  required this.isSmallScreen,
});