StreamSvgIcon.iconNotification constructor

StreamSvgIcon.iconNotification({
  1. double? size,
  2. Color? color,
})

Implementation

factory StreamSvgIcon.iconNotification({
  double? size,
  Color? color,
}) {
  return StreamSvgIcon(
    assetName: 'Icon_notification.svg',
    color: color,
    width: size,
    height: size,
  );
}