tryIntValue static method
Implementation
static int? tryIntValue(Map<String, Object?> src, String field, {int nullValue = 0}) {
if (src.containsKey(field)) {
return intValue(src, field, nullValue: nullValue);
};
return null;
}
static int? tryIntValue(Map<String, Object?> src, String field, {int nullValue = 0}) {
if (src.containsKey(field)) {
return intValue(src, field, nullValue: nullValue);
};
return null;
}