menu
artifact package
documentation
codec.dart
StringToInt
decode method
decode method
dark_mode
light_mode
decode
method
@
override
int
?
decode
(
String
?
value
)
override
Implementation
@override int? decode(String? value) => value == null ? null : int.tryParse(value ?? "") ?? 0;
artifact package
documentation
codec
StringToInt
decode method
StringToInt class