AuthResponse constructor

AuthResponse({
  1. ClientConfig? config,
  2. String? authToken,
})

Implementation

factory AuthResponse({
  ClientConfig? config,
  $core.String? authToken,
}) {
  final result = create();
  if (config != null) result.config = config;
  if (authToken != null) result.authToken = authToken;
  return result;
}