titleCase property

String get titleCase

Implementation

String get titleCase =>
    split(' ').map((word) => word.capitalize).join(' ');