IdentityProvider constructor
IdentityProvider({
- String? id,
- String? name,
- IdentityProviderType? type,
Implementation
factory IdentityProvider({
$core.String? id,
$core.String? name,
IdentityProviderType? type,
}) {
final result = create();
if (id != null) result.id = id;
if (name != null) result.name = name;
if (type != null) result.type = type;
return result;
}