RegisterClientResponse.fromJson constructor

RegisterClientResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RegisterClientResponse.fromJson(Map<String, dynamic> json) {
  return RegisterClientResponse(
    authorizationEndpoint: json['authorizationEndpoint'] as String?,
    clientId: json['clientId'] as String?,
    clientIdIssuedAt: json['clientIdIssuedAt'] as int?,
    clientSecret: json['clientSecret'] as String?,
    clientSecretExpiresAt: json['clientSecretExpiresAt'] as int?,
    tokenEndpoint: json['tokenEndpoint'] as String?,
  );
}