T extractOptionalField<T>( Map<String, dynamic> json, String field, T defaultValue) { return json[field] ?? defaultValue; }