CustomTableDropDownModel<T> constructor

CustomTableDropDownModel<T>({
  1. int? id,
  2. required String label,
  3. T? otherData,
})

T type data constructor

Implementation

final T? otherData; /// T type data

/// constructor
CustomTableDropDownModel({
  this.id,
  required this.label,
  this.otherData
});