ProfilePicture constructor

const ProfilePicture(
  1. {Key? key,
  2. required String id,
  3. String? heroTag,
  4. bool isThumbnail = true,
  5. double? iconSize = 32}
)

Implementation

const ProfilePicture({
  super.key,
  required this.id,
  this.heroTag,
  this.isThumbnail = true,
  this.iconSize = 32,
});