toString method

  1. @override
String toString()
override

Returns a string representation of this provider for debugging purposes.

The string includes the provider type, the image URL, and the fallback asset path.

Implementation

@override
String toString() {
  return '${objectRuntimeType(this, "DioImageProvider")}'
      '(url: $imageUrl, fallback: $fallbackAssetPath)';
}