copyWith method
Implementation
LivePullStateEntity copyWith({
int? payType,
int? feeType,
int? liveState,
String? pullAddress,
String? pullAddress360,
String? durationTime,
String? endTime,
int? coin,
}) =>
LivePullStateEntity(
payType: payType ?? this.payType,
feeType: feeType ?? this.feeType,
pullAddress: pullAddress ?? this.pullAddress,
pullAddress360: pullAddress360 ?? this.pullAddress360,
durationTime: durationTime ?? this.durationTime,
endTime: endTime ?? this.endTime,
coin: coin ?? this.coin,
liveState: liveState ?? this.liveState,
);