AppticsAppUpdateNotSupported.fromJson constructor

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

Implementation

factory AppticsAppUpdateNotSupported.fromJson(Map<String, dynamic> json) {
  return AppticsAppUpdateNotSupported(
      title: json['title'],
      description: json['description'],
      continueBtTxt: json['continueBtTxt'],
      alertType: json['alertType'],
      updateId: json['updateId']);
}