TriballyView constructor

const TriballyView({
  1. Key? key,
  2. required String displayName,
  3. required String uid,
  4. required String projectId,
  5. required String apiKey,
  6. String? avatar,
  7. TriballyCreatedCallback? onTriballyCreated,
  8. Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
  9. Color? primary,
  10. Color? background,
  11. Color? surface,
  12. Color? text,
  13. Color? icon,
  14. Color? primaryDark,
  15. Color? backgroundDark,
  16. Color? surfaceDark,
  17. Color? textDark,
  18. Color? dividerDark,
  19. Color? subText,
  20. Color? onSurface,
})

Implementation

const TriballyView({
  Key? key,
  required this.displayName,
  required this.uid,
  required this.projectId,
  required this.apiKey,
  this.avatar,
  this.onTriballyCreated,
  this.gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
  this.primary,
  this.background,
  this.surface,
  this.text,
  this.icon,
  this.primaryDark,
  this.backgroundDark,
  this.surfaceDark,
  this.textDark,
  this.dividerDark,
  this.subText,
  this.onSurface,
}) : super(key: key);