UserAvatar constructor
const
UserAvatar({})
Implementation
const UserAvatar(
{Key? key,
String? url,
double? width,
double? height,
this.child,
this.backgroundColor})
: faceUrl = url ?? "",
width = width ?? 32.0,
height = height ?? 32.0,
super(key: key);