setInitialised method

void setInitialised(
  1. bool value
)

Sets the initialised value for the ViewModel to true. This is called after the first initialise special ViewModel call

Implementation

void setInitialised(bool value) {
  _initialised = value;
}