toJson method
Implementation
Map<String, dynamic> toJson() {
final clientId = this.clientId;
final userGroup = this.userGroup;
final userPool = this.userPool;
return {
'ClientId': clientId,
'UserGroup': userGroup,
'UserPool': userPool,
};
}