takeInitialsWithoutGarbage method

String takeInitialsWithoutGarbage(
  1. int count, {
  2. bool fill = false,
  3. List<String> garbage = garbage,
})

Implementation

String takeInitialsWithoutGarbage(
  int count, {
  bool fill = false,
  List<String> garbage = garbage,
}) =>
    takeInitials(
      count,
      fill: fill,
      withoutGarbage: true,
      garbage: garbage,
    );