XImage constructor

XImage({
  1. String? uri,
  2. required bool remote,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.contain,
  6. WidgetBuilder? placeholderBuilder,
  7. Widget? overrideWidget,
})

Implementation

XImage(
    {this.uri,
    required this.remote,
    this.width,
    this.height,
    this.fit = BoxFit.contain,
    this.placeholderBuilder,
    this.overrideWidget});