CNListItem constructor

const CNListItem({
  1. required String title,
  2. String? subtitle,
  3. CNSymbol? leadingSymbol,
  4. bool showChevron = false,
})

Creates a row for a CNNativeList.

Implementation

const CNListItem({
  required this.title,
  this.subtitle,
  this.leadingSymbol,
  this.showChevron = false,
});