pad3 property

String get pad3

Implementation

String get pad3 => this < 10 ? "00$this" : (this < 100 ? "0$this" : "$this");