capitalize property

JsonCraftFormatter get capitalize

Implementation

static JsonCraftFormatter get capitalize => JsonCraftFormatter(
      name: 'capitalize',
      formatter: (value, param, getValue) {
        if (value.isEmpty) return value;
        return value[0].toUpperCase() + value.substring(1);
      },
    );