createTxtControllers method

void createTxtControllers(
  1. Servicer servicer
)

Implementation

void createTxtControllers(Servicer servicer) {
  if (servicer.authSteps.isNotEmpty) {
    int paramsQtd = servicer.authSteps[0].authParams.length;

    for (int i = 0; i <= paramsQtd; i++) {
      authParams.add(TextEditingController());
    }
  }
}