LicensedApplication.fromJson constructor

LicensedApplication.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory LicensedApplication.fromJson(Map<String, Object?> json) {
  return LicensedApplication(
    id: json[r'id'] as String? ?? '',
    plan: LicensedApplicationPlan.fromValue(json[r'plan'] as String? ?? ''),
  );
}