buildImage method
Implementation
Widget buildImage() {
if (info.imgUrl.isEmpty) return const Row();
double imageSize = width - 16;
return Padding(
padding: const EdgeInsets.only(top: 14),
child: Image.network(info.imgUrl,
width: imageSize, height: imageSize, fit: BoxFit.cover),
);
}