UserContext.fromJson constructor
Implementation
factory UserContext.fromJson(Map<String, dynamic> json) {
return UserContext(
domainId: json['DomainId'] as String?,
userProfileArn: json['UserProfileArn'] as String?,
userProfileName: json['UserProfileName'] as String?,
);
}