removeSpaces function

String removeSpaces(
  1. String value
)

Implementation

String removeSpaces(String value) => value.toLowerCase().replaceAll(' ', '');