StreamSvgIcon constructor

const StreamSvgIcon({
  1. Key? key,
  2. String? assetName,
  3. Color? color,
  4. double? width = 24,
  5. double? height = 24,
})

Constructor for creating a StreamSvgIcon

Implementation

const StreamSvgIcon({
  Key? key,
  this.assetName,
  this.color,
  this.width = 24,
  this.height = 24,
}) : super(key: key);