DisplayTile constructor

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

Implementation

DisplayTile(
    {required this.title,
    this.atsignCreator,
    required this.subTitle,
    this.semiTitle,
    this.invitedBy,
    this.number,
    this.showName = false,
    this.action,
    this.showRetry = false,
    this.onRetryTapped});