formalize property

String formalize

example string: "amogus" becomes "Amogus"

Implementation

String get formalize => this[0].toUpperCase() + substring(1);