copyWith method Null safety

GridComponentLoaded copyWith(
  1. {GridModel? copyThis}
)

Implementation

GridComponentLoaded copyWith({GridModel? copyThis}) {
  return GridComponentLoaded(value: copyThis ?? value);
}