toZinc method

  1. @override
String toZinc()
override

Encodes as "T" or "F"

Implementation

@override
String toZinc() => val ? "T" : "F";