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