first property

String get first

The first character in this String.

The String must not be empty when accessing its first character.

Implementation

String get first => this[0];