ServerGetConfigOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const ServerGetConfigOutput({
  1. @ServiceConfigConverter() ServiceConfig? appview,
  2. @ServiceConfigConverter() ServiceConfig? pds,
  3. @ServiceConfigConverter() ServiceConfig? blobDivert,
  4. @ServiceConfigConverter() ServiceConfig? chat,
  5. @ViewerConfigConverter() ViewerConfig? viewer,
  6. String? verifierDid,
  7. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ServerGetConfigOutput({
  @ServiceConfigConverter() ServiceConfig? appview,
  @ServiceConfigConverter() ServiceConfig? pds,
  @ServiceConfigConverter() ServiceConfig? blobDivert,
  @ServiceConfigConverter() ServiceConfig? chat,
  @ViewerConfigConverter() ViewerConfig? viewer,

  /// The did of the verifier used for verification.
  String? verifierDid,

  Map<String, dynamic>? $unknown,
}) = _ServerGetConfigOutput;