oneOfManyResultCallBack method

void oneOfManyResultCallBack(
  1. List<OneOfManyResult> result
)

Implementation

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