copyWith method

Status copyWith({
  1. Icon? icon,
  2. bool? resolved,
})

Implementation

Status copyWith({Icon? icon, bool? resolved}) {
  return Status(
    icon: icon ?? this.icon,
    resolved: resolved ?? this.resolved,
  );
}