ZetaTag.left constructor

const ZetaTag.left({
  1. Key? key,
  2. bool? rounded,
  3. required String label,
  4. String? semanticLabel,
})

Constructs left facing ZetaTag.

Implementation

const ZetaTag.left({super.key, super.rounded, required this.label, this.semanticLabel})
    : direction = ZetaTagDirection.left;