OkraHandler constructor

OkraHandler(
  1. bool isDone,
  2. bool isSuccessful,
  3. bool hasError,
  4. bool onClose,
  5. bool beforeClose,
  6. String data,
)

Implementation

OkraHandler(bool isDone, bool isSuccessful, bool hasError, bool onClose,
    bool beforeClose, String data) {
  this.isDone = isDone;
  this.isSuccessful = isSuccessful;
  this.hasError = hasError;
  this.onClose = onClose;
  this.beforeClose = beforeClose;
  this.data = data;
}