effectiveData property

FdcGridThemeData get effectiveData

Returns the current effective data.

Implementation

FdcGridThemeData get effectiveData {
  if (style == null) {
    return data;
  }

  return data.copyWith(grid: data.grid.merge(style));
}