AtomicSvg.network constructor

const AtomicSvg.network({
  1. Key? key,
  2. required String url,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.contain,
  6. Color? color,
})

Implementation

const AtomicSvg.network({
  super.key,
  required String url,
  this.width,
  this.height,
  this.fit = BoxFit.contain,
  this.color,
})  : path = url,
      source = AtomicSvgSource.network;