How can I use if-else construction in build method?
Now I use double if:
if (_rapport.isNotEmpty && _rapport.length == 3)
Container(
child: Text(_rapport),
),
if (_rapport.isEmpty || _rapport.length != 3)
const Text('wrong input'),
while using else brings the error:
