convertCase property

int? convertCase

This option allows output text case transformation. No changes applied by default to original values.

Implementation

int? get convertCase => _convertCase;
void convertCase=(int? val)

Implementation

set convertCase(int? val) {
  _convertCase = val;
  _set({"convertCase": val});
}