ref function

SchemaType ref(
  1. String serialName
)

Creates a schema type representing a reference to another schema by its serial name.

Implementation

SchemaType ref(String serialName) {
  return SchemaType.reference(serialName);
}