toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedGrantTypes = this.allowedGrantTypes;
  final allowedRedirectUris = this.allowedRedirectUris;
  final allowedScopes = this.allowedScopes;
  final clientId = this.clientId;
  final clientType = this.clientType;
  final description = this.description;
  final disabled = this.disabled;
  final displayName = this.displayName;
  final expireTime = this.expireTime;
  final name = this.name;
  final state = this.state;
  return {
    'allowedGrantTypes': ?allowedGrantTypes,
    'allowedRedirectUris': ?allowedRedirectUris,
    'allowedScopes': ?allowedScopes,
    'clientId': ?clientId,
    'clientType': ?clientType,
    'description': ?description,
    'disabled': ?disabled,
    'displayName': ?displayName,
    'expireTime': ?expireTime,
    'name': ?name,
    'state': ?state,
  };
}