ExpandableCell<T> constructor

ExpandableCell<T>({
  1. required String columnTitle,
  2. T? value,
})

Implementation

ExpandableCell({
  required this.columnTitle,
  this.value,
});