mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-23 03:25:26 +00:00
dart fix --apply --code=unnecessary_null_in_if_null_operators
This commit is contained in:
parent
45f3af5646
commit
20961b2ea0
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class _IPAndPortFormField extends FormFieldState<IPAndPort> {
|
|||
super.didUpdateWidget(oldWidget);
|
||||
var update = IPAndPort(
|
||||
ip: widget.ipController?.text,
|
||||
port: int.tryParse(widget.portController?.text ?? "") ?? null,
|
||||
port: int.tryParse(widget.portController?.text ?? ""),
|
||||
);
|
||||
bool shouldUpdate = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue