getValue method

List<List<bool>>? getValue(
  1. DataSourceBase? dataSource
)

Implementation

List<List<bool>>? getValue(DataSourceBase? dataSource) {
  if (binding != null) {
    return dataSource!.execExpressionToValue(binding!);
  }
  return null;
}