factory IdOrKeyBean.fromJson(Map<String, Object?> json) { return IdOrKeyBean( id: (json[r'id'] as num?)?.toInt(), key: json[r'key'] as String?, ); }