part of 'metadata.dart'; @Freezed(genericArgumentFactories: true) class SpotubeBrowseSectionObject with _$SpotubeBrowseSectionObject { factory SpotubeBrowseSectionObject({ required String id, required String title, required String externalUri, required bool browseMore, required List items, }) = _SpotubeBrowseSectionObject; factory SpotubeBrowseSectionObject.fromJson( Map json, T Function(Map json) fromJsonT, ) => _$SpotubeBrowseSectionObjectFromJson( json, (json) => fromJsonT(json as Map), ); }