UpdateAPIApplicationConfigurationRequest constructor

UpdateAPIApplicationConfigurationRequest({
  1. APIAuthMethodType? authMethodType,
})

Implementation

factory UpdateAPIApplicationConfigurationRequest({
  $7.APIAuthMethodType? authMethodType,
}) {
  final result = create();
  if (authMethodType != null) result.authMethodType = authMethodType;
  return result;
}