copyWith method

FreeProductTotal copyWith({
  1. String? subTotal,
})

Implementation

FreeProductTotal copyWith({  String? subTotal,
}) => FreeProductTotal(  subTotal: subTotal ?? this.subTotal,
);