copyWith method
Implementation
RestrictedPermission copyWith({String? id, String? key}) {
return RestrictedPermission(
id: id ?? this.id,
key: key ?? this.key,
);
}
RestrictedPermission copyWith({String? id, String? key}) {
return RestrictedPermission(
id: id ?? this.id,
key: key ?? this.key,
);
}