UserStackAssociation.fromJson constructor
Implementation
factory UserStackAssociation.fromJson(Map<String, dynamic> json) {
return UserStackAssociation(
authenticationType:
(json['AuthenticationType'] as String).toAuthenticationType(),
stackName: json['StackName'] as String,
userName: json['UserName'] as String,
sendEmailNotification: json['SendEmailNotification'] as bool?,
);
}