Val copyWith({ String? error, bool? isFocus, }) { return Val( error: (error?.isEmpty ?? false ? null : error ?? this.error), isFocus: isFocus ?? this.isFocus, ); }