copyWith method

DrishyaBackground copyWith({
  1. DrishyaEntity? entity,
})

Implementation

DrishyaBackground copyWith({
  DrishyaEntity? entity,
}) {
  return DrishyaBackground(
    entity: entity ?? this.entity,
  );
}