copyWith method
Implementation
CardRecordByTime copyWith(
{int? channel, int? streamType, DateTime? beginTime, DateTime? endTime}) {
return CardRecordByTime(
channel: channel ?? this.channel,
streamType: streamType ?? this.streamType,
beginTime: beginTime ?? this.beginTime,
endTime: endTime ?? this.endTime,
);
}