toJson method

Map<String, dynamic> toJson()

Implementation

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