merge method
Returns this style with non-null values from override applied.
Implementation
FdcGridCellIndicatorStyle merge(FdcGridCellIndicatorStyle? override) {
if (override == null) {
return this;
}
return FdcGridCellIndicatorStyle(
readOnlyColor: override.readOnlyColor ?? readOnlyColor,
editableColor: override.editableColor ?? editableColor,
editingColor: override.editingColor ?? editingColor,
thickness: override.thickness ?? thickness,
borderRadius: override.borderRadius ?? borderRadius,
);
}