casing property

Casing? casing

Apply casing at the mask-level.

@default undefined

Implementation

_i3.Casing? get casing => switch (_i4.getProperty(
      this,
      'casing',
    )) {
      _i2.String name => _i3.CasingOptions.values.byName(name),
      _ => null
    };
void casing=(Casing? value)

Implementation

set casing(_i3.Casing? value) {
  _i4.setProperty(
    this,
    'casing',
    value?.name ?? _i6.undefined ?? _i6.undefined,
  );
}