NiceAccessibleDataRow constructor

const NiceAccessibleDataRow({
  1. Key? key,
  2. required Widget child,
  3. required int rowIndex,
  4. bool isSelected = false,
  5. String? label,
})

Implementation

const NiceAccessibleDataRow({
  super.key,
  required this.child,
  required this.rowIndex,
  this.isSelected = false,
  this.label,
});