startWithCompletionBlockWithSuccess method

void startWithCompletionBlockWithSuccess(
  1. MCRequestCallback success,
  2. MCRequestCallback failure
)

Implementation

void startWithCompletionBlockWithSuccess(
    MCRequestCallback success, MCRequestCallback failure) async {
  this.success = success;
  this.failure = failure;
  this.start();
  // this.clearCompletionBlock();
}