EnrollInitModel.fromJson constructor
Creates an EnrollInitModel object from a JSON map.
This is useful when you need to deserialize data from a JSON response.
Implementation
EnrollInitModel.fromJson(Map<String, dynamic> json) {
localizationCode = json['localizationCode'];
enrollEnvironment = json['enrollEnvironment'];
tenantId = json['tenantId'];
enrollMode = json['enrollMode'];
applicantId = json['applicationId'];
levelOfTrust = json['levelOfTrust'];
skipTutorial = json['skipTutorial'];
tenantSecret = json['tenantSecret'];
googleApiKey = json['googleApiKey'];
correlationId = json['correlationId'];
colors = json['colors'];
}