copyWith method

LivePullStateEntity copyWith({
  1. int? payType,
  2. int? feeType,
  3. int? liveState,
  4. String? pullAddress,
  5. String? pullAddress360,
  6. String? durationTime,
  7. String? endTime,
  8. int? coin,
})

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,
    );