copyWith method
Implementation
PushMessageContentText copyWith({String? text, bool? isPinned}) =>
PushMessageContentText(
text: text ?? this.text,
isPinned: isPinned ?? this.isPinned,
);
PushMessageContentText copyWith({String? text, bool? isPinned}) =>
PushMessageContentText(
text: text ?? this.text,
isPinned: isPinned ?? this.isPinned,
);