ImageAvatar constructor

const ImageAvatar({
  1. Key? key,
  2. double? size,
  3. String? assetPath,
  4. String? url,
  5. ImageProvider<Object>? image,
  6. Color? color,
  7. BoxFit? fit,
  8. double? borderWith,
  9. Color? borderColor,
})

Implementation

const ImageAvatar(
    {Key? key,
    this.size,
    this.assetPath,
    this.url,
    this.image,
    this.color,
    this.fit,
    this.borderWith,
    this.borderColor})
    : super(key: key);