ListMyAuthFactorsResponse constructor

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

Implementation

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