GetCurrentMobileVersionOutput.fromJson constructor

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

Implementation

factory GetCurrentMobileVersionOutput.fromJson(Map<String, dynamic> json) => GetCurrentMobileVersionOutput(
  version: json["version"],
  isMandatory: json["isMandatory"],
);