CreateUserPoolResponse.fromJson constructor
Implementation
factory CreateUserPoolResponse.fromJson(Map<String, dynamic> json) {
return CreateUserPoolResponse(
userPool: json['UserPool'] != null
? UserPoolType.fromJson(json['UserPool'] as Map<String, dynamic>)
: null,
);
}