copyWith method
Implementation
Permissions copyWith({String? consentToken, Map<String, dynamic>? scopes}) {
return Permissions(
consentToken: consentToken ?? this.consentToken,
scopes: scopes ?? this.scopes);
}
Permissions copyWith({String? consentToken, Map<String, dynamic>? scopes}) {
return Permissions(
consentToken: consentToken ?? this.consentToken,
scopes: scopes ?? this.scopes);
}