RemoteAuth_Credentials constructor

RemoteAuth_Credentials({
  1. CredentialsType? type,
  2. 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;
}