copy method

  1. @mustCallSuper
void copy([
  1. StateX<StatefulWidget>? state
])
inherited

Copy particular properties from another StateX

Implementation

@mustCallSuper
void copy([StateX? state]) {
  //
  if (state == null) {
    return;
  }
  // Copy over certain properties
  _recException = state._recException;
  _runAsync = state._runAsync;
}