spacedUppercase method

String spacedUppercase()

Returns the string with spaces between characters and in UPPERCASE

Implementation

String spacedUppercase() =>
    isEmpty ? this : split('').map((c) => c.toUpperCase()).join(' ');