createOrg method

Future<void> createOrg({
  1. required String orgName,
  2. AuthFlowType? type,
})

Implementation

Future<void> createOrg({required String orgName, AuthFlowType? type}) async {
  await _redirectToKinde(type: type, orgCode: null, additionalParams: {
    _registrationPageParamName: _registrationPageParamValue,
    _createOrgParamName: "true",
    _orgNameParamName: orgName
  });
}