LexXrpcQuery constructor

  1. @JsonSerializable(includeIfNull: false)
const LexXrpcQuery({
  1. @Default('query') String type,
  2. String? description,
  3. LexXrpcParameters? parameters,
  4. LexXrpcBody? output,
  5. List<LexXrpcError>? errors,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexXrpcQuery({
  @Default('query') String type,
  String? description,
  LexXrpcParameters? parameters,
  LexXrpcBody? output,
  List<LexXrpcError>? errors,
}) = _LexXrpcQuery;