Price constructor

Price({
  1. required double? totalPrice,
  2. required double? resellerPrice,
  3. required String? sTypename,
})

Implementation

Price(
    {required this.totalPrice,
    required this.resellerPrice,
    required this.sTypename});