DisplayTile constructor

const DisplayTile({
  1. Key? key,
  2. required String? title,
  3. required String? atsignCreator,
  4. required String? subTitle,
  5. String? semiTitle,
  6. String? invitedBy,
  7. int? number,
  8. bool showName = false,
  9. Widget? action,
  10. bool showRetry = false,
  11. Function? onRetryTapped,
})

Implementation

const DisplayTile(
    {Key? key,
    required this.title,
    required this.atsignCreator,
    required this.subTitle,
    this.semiTitle,
    this.invitedBy,
    this.number,
    this.showName = false,
    this.action,
    this.showRetry = false,
    this.onRetryTapped})
    : super(key: key);