RemoteAuth_Credentials constructor
- CredentialsType? type,
- String? payload,
Implementation
factory RemoteAuth_Credentials({
CredentialsType? type,
$core.String? payload,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (payload != null) {
$result.payload = payload;
}
return $result;
}