RemotePicture constructor

const RemotePicture({
  1. required String imagePath,
  2. required String mapKey,
  3. String? storageKey,
  4. bool useAvatarView = false,
  5. String? placeholder,
  6. double? avatarViewRadius,
  7. BoxFit? fit,
  8. Key? key,
})

Implementation

const RemotePicture({
  required this.imagePath,
  required this.mapKey,
  this.storageKey,
  this.useAvatarView = false,
  this.placeholder,
  this.avatarViewRadius,
  this.fit,
  super.key,
});