CardHeader<T> constructor

const CardHeader<T>({
  1. Key? key,
  2. required T title,
  3. Widget? trailing,
})

Implementation

const CardHeader({
  Key? key,
  required this.title,
  this.trailing,
}) : super(key: key);