copyWith method

SavedCredentials copyWith({
  1. String? id,
  2. String? title,
})

Implementation

SavedCredentials copyWith({
  String? id,
  String? title,
}) =>
    SavedCredentials(
      id: id ?? this.id,
      title: title ?? this.title,
    );