copyWith method

  1. @override
PushMessageContentContact copyWith({
  1. String? name,
  2. bool? isPinned,
})
override

Implementation

@override
PushMessageContentContact copyWith({
  String? name,
  bool? isPinned,
}) =>
    PushMessageContentContact(
      name: name ?? this.name,
      isPinned: isPinned ?? this.isPinned,
    );