OudsListItemTrailingImage constructor

const OudsListItemTrailingImage({
  1. required String asset,
  2. String? contentDescription,
  3. OudsListItemImageSize size = OudsListItemImageSize.medium,
  4. OudsListItemImageFormat format = OudsListItemImageFormat.square,
  5. bool rounded = false,
})

Creates a trailing image configuration.

Implementation

const OudsListItemTrailingImage({
  required this.asset,
  this.contentDescription,
  this.size = OudsListItemImageSize.medium,
  this.format = OudsListItemImageFormat.square,
  this.rounded = false,
});