oneOfManyResultCallBack method

void oneOfManyResultCallBack(
  1. List<OneOfManyResult> result
)

one of many result is obtained here

Implementation

void oneOfManyResultCallBack(List<OneOfManyResult> result) {
  if (callback != null) {
    callback!.oneOfManyResult(result);
  }
}