ClientSecret.fromJson constructor
Creates a ClientSecret from JSON.
Implementation
factory ClientSecret.fromJson(Map<String, dynamic> json) {
return ClientSecret(
value: json['value'] as String,
expiresAt: json['expires_at'] as int,
);
}
Creates a ClientSecret from JSON.
factory ClientSecret.fromJson(Map<String, dynamic> json) {
return ClientSecret(
value: json['value'] as String,
expiresAt: json['expires_at'] as int,
);
}