ListMyAuthFactorsResponse constructor

ListMyAuthFactorsResponse({
  1. Iterable<AuthFactor>? result,
})

Implementation

factory ListMyAuthFactorsResponse({
  $core.Iterable<$11.AuthFactor>? result,
}) {
  final $result = create();
  if (result != null) {
    $result.result.addAll(result);
  }
  return $result;
}