feet/lib/api/util.dart

9 lines
259 B
Dart
Raw Normal View History

2022-12-29 16:11:01 +00:00
part of fever_api;
/// PHP developers seem to be incapable of returning consistent types,
/// so I need a toInt function that handles both ints and Strings.
int toInt(dynamic input) {
if (input is int) return input;
return int.parse(input.toString());
}