copyWith method

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

Implementation

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