image property

String? image
final

Image displayed inside the grid cell. Supports three formats:

  • Asset (pubspec.yaml): 'images/logo.png'
  • Local file: 'file:///path/to/image.png'
  • Network URL: 'https://example.com/image.png'

Falls back to a default icon when null or when the load fails.

Implementation

final String? image;