RateDialog constructor

const RateDialog(
  1. {Key? key,
  2. required List<String> rates,
  3. String? rate}
)

Implementation

const RateDialog({
  Key? key,
  required this.rates,
  this.rate,
}) : super(key: key);