copyWith method
Implementation
copyWith({
String? token,
double? createdAt,
FCMTokenType? type,
String? id,
}) {
return FCMToken(
token: token ?? this.token,
createdAt: createdAt ?? this.createdAt,
type: type ?? this.type,
id: id ?? this.id,
);
}