DataUrlImageProviderParams constructor

DataUrlImageProviderParams(
  1. Uint8List bytes, {
  2. int? cachedWidth,
  3. int? cachedHeight,
  4. BoxFit objectFit = BoxFit.fill,
})

Implementation

DataUrlImageProviderParams(this.bytes,
    {int? cachedWidth, int? cachedHeight, BoxFit objectFit = BoxFit.fill})
    : super(cachedWidth: cachedWidth, cachedHeight: cachedHeight, objectFit: objectFit);