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