buildContent method
Implementation
Widget buildContent(BuildContext context) {
if (entity.type == AssetType.audio) {
return const Center(
child: Icon(Icons.audiotrack, size: 30),
);
}
return _buildImageWidget(context, entity, option);
}