uppercase method

JarString uppercase()

Implementation

JarString uppercase() {
  return transform((value) => value?.toUpperCase());
}