List<int> asListInt(Map<String, dynamic>? json, String key, {List? defaultValue}) { return asList(json, key, defaultValue: defaultValue) .map((e) => toInt(e)) .toList(); }