initials property

String get initials

Implementation

String get initials {
  return split(' ').map((e) => e[0]).join();
}