lastIndex property

String lastIndex

Implementation

String get lastIndex {
  if (isEmptyOrNull) return "";
  return this![this!.length - 1];
}