fix: type an untyped function variable

This commit is contained in:
Bart Ribbers 2025-04-03 15:57:05 +02:00
parent 802265e43c
commit c0ce4734e4

View file

@ -19,14 +19,14 @@ class ItemBuilder {
Widget build(
String key,
value,
String? value,
Widget? widget,
Function(String) updateItem,
Function(String?) saveItem,
) {
if (widget == null) {
var controller = TextEditingController(
text: '${value ?? ''}',
text: value ?? '',
);
var inputDecoration =