factory Bucket.fromJson(Map<String, dynamic> json) { return Bucket( count: json['count'] as int?, value: json['value'] as String?, ); }