copyWith method

Passkey copyWith({
  1. String? id,
  2. String? name,
  3. int? additionDate,
  4. int? lastUsageDate,
  5. int? softwareIconCustomEmojiId,
})

Implementation

Passkey copyWith({
  String? id,
  String? name,
  int? additionDate,
  int? lastUsageDate,
  int? softwareIconCustomEmojiId,
}) => Passkey(
  id: id ?? this.id,
  name: name ?? this.name,
  additionDate: additionDate ?? this.additionDate,
  lastUsageDate: lastUsageDate ?? this.lastUsageDate,
  softwareIconCustomEmojiId:
      softwareIconCustomEmojiId ?? this.softwareIconCustomEmojiId,
);