copyWith method
FirstRechargeEntity
copyWith({
- int? showEntrance,
- int? firstChargeType,
- 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,
);