buildNotificationIcon method

Widget buildNotificationIcon()

Implementation

Widget buildNotificationIcon() {
  return Container(
    margin: EdgeInsets.only(right: 8),
    child: ClipOval(
      child: Image.network(
        widget.message['notification_content']['icon'].toString(),
        height: 25,
        width: 25,
        fit: BoxFit.cover,
      ),
    ),
  );
}