NxImage constructor

const NxImage({
  1. Key? key,
  2. ImageProvider<Object>? image,
  3. Color borderColor = Colors.transparent,
  4. double borderSize = 0,
  5. double radius = 0,
  6. double size = 60,
})

Implementation

const NxImage({
  Key? key,
  this.image,
  this.borderColor = Colors.transparent,
  this.borderSize = 0,
  this.radius = 0,
  this.size = 60
}) : super(key: key);