copyWith method
Implementation
TextEntityTypeDateTime copyWith({
int? unixTime,
DateTimeFormattingType? formattingType,
}) => TextEntityTypeDateTime(
unixTime: unixTime ?? this.unixTime,
formattingType: formattingType ?? this.formattingType,
);