copyWith method

FCMTemplate copyWith({
  1. String? title,
  2. String? content,
})

Implementation

FCMTemplate copyWith({String? title, String? content}) {
  return FCMTemplate(
      title: title ?? this.title, content: content ?? this.content);
}