RadioBrick<T> constructor
const
RadioBrick<T> ({
- Key? key,
- String? title,
- String? subtitle,
- required T value,
- required T groupValue,
- ValueChanged<
T?> ? changeListener,
Implementation
const RadioBrick({
Key? key,
this.title,
this.subtitle,
required this.value,
required this.groupValue,
this.changeListener,
}) : super(key: key);