ApplyResult.failure constructor

ApplyResult.failure(
  1. List<ApplyError> errors
)

Failure factory

Implementation

factory ApplyResult.failure(List<ApplyError> errors) {
  return ApplyResult(success: false, errors: errors);
}