RadioBrick<T> constructor

const RadioBrick<T>({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. required T value,
  5. required T groupValue,
  6. ValueChanged<T?>? changeListener,
})

Implementation

const RadioBrick({
  Key? key,
  this.title,
  this.subtitle,
  required this.value,
  required this.groupValue,
  this.changeListener,
}) : super(key: key);