twoDigits method

String twoDigits()

Implementation

String twoDigits() => this < 10 ? '0$this' : toString();