copyWith method

FirstRechargeEntity copyWith({
  1. int? showEntrance,
  2. int? firstChargeType,
  3. List<FirstRechargeInfoEntity>? props,
})

Implementation

FirstRechargeEntity copyWith({
  int? showEntrance,
  int? firstChargeType,
  List<FirstRechargeInfoEntity>? props,
}) =>
    FirstRechargeEntity(
      showEntrance: showEntrance ?? this.showEntrance,
      firstChargeType: firstChargeType ?? this.firstChargeType,
      props: props ?? this.props,
    );