buildAppIcon function

Widget buildAppIcon(
  1. String base64Icon, {
  2. double size = 40,
})

Implementation

Widget buildAppIcon(String base64Icon, {double size = 40}) {
  if (base64Icon.isEmpty) return Icon(Icons.apps);

  Uint8List bytes = base64Decode(base64Icon);
  return Image.memory(bytes, width: size, height: size);
}