getXDGCell method

DataGridCell getXDGCell(
  1. dynamic val
)

Implementation

DataGridCell getXDGCell(dynamic val) {
  return DataGridCell(
    columnName: this.colKey,
    value: val,
  );
}