spacedUppercase method
Returns the string with spaces between characters and in UPPERCASE
Implementation
String spacedUppercase() =>
isEmpty ? this : split('').map((c) => c.toUpperCase()).join(' ');
Returns the string with spaces between characters and in UPPERCASE
String spacedUppercase() =>
isEmpty ? this : split('').map((c) => c.toUpperCase()).join(' ');