FlutlyProfileImage constructor

FlutlyProfileImage({
  1. Key? key,
  2. required String path,
  3. FlutlyProfileImageApperiances? apperiances,
  4. double? width,
  5. double? height,
  6. bool? expanded,
})

Implementation

FlutlyProfileImage({
  Key? key,
  required this.path,
  this.apperiances,
  this.width,
  this.height,
  this.expanded,
}) : super(key: key) {
  apperiances ??= FlutlyProfileImageApperiances();
  setCanShimmer(true);
}