setDefaultAppearance method

void setDefaultAppearance(
  1. bool value
)

Specifies whether to set the default appearance for the form or not.

Implementation

void setDefaultAppearance(bool value) {
  _helper.needAppearances = value;
  _helper.setAppearanceDictionary = !value;
  _helper._isDefaultAppearance = value;
}