GaColumn constructor

GaColumn({
  1. required String name,
  2. String headerText = "",
  3. PlutoColumnType type = const PlutoColumnTypeText(defaultValue: ''),
  4. PlutoColumnFooterRenderer? footerRenderer,
})

Implementation

GaColumn({required this.name, this.headerText = "", this.type = const PlutoColumnTypeText(defaultValue: ''), this.footerRenderer }){
  if(headerText.isEmpty){
    headerText = name;
  }
}