SyncedImageView constructor

const SyncedImageView({
  1. Key? key,
  2. required String? url,
  3. required double? width,
  4. required double? height,
  5. required BoxFit? fit,
  6. required String placeholder,
})

Implementation

const SyncedImageView({
  super.key,
  required this.url,
  required this.width,
  required this.height,
  required this.fit,
  required this.placeholder,
});