LexXrpcProcedure constructor

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

Implementation

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