Api class final

Api is a light-weight descriptor for an API Interface.

Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology.

Inheritance

Constructors

Api({String? name, List<Method>? methods, List<Option>? options, String? version, SourceContext? sourceContext, List<Mixin>? mixins, Syntax? syntax})
Api.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
methods List<Method>?
The methods of this interface, in unspecified order.
final
mixins List<Mixin>?
Included interfaces. See Mixin.
final
name String?
The fully qualified name of this interface, including package name followed by the interface's simple name.
final
options List<Option>?
Any metadata attached to the interface.
final
qualifiedName String
The fully qualified name of this message, i.e., google.protobuf.Duration or google.rpc.ErrorInfo.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sourceContext SourceContext?
Source context for the protocol buffer service represented by this message.
final
syntax Syntax?
The source syntax of the service.
final
version String?
A version string for this interface. If specified, must have the form major-version.minor-version, as in 1.10. If the minor version is omitted, it defaults to zero. If the entire version field is empty, the major version is derived from the package name, as outlined below. If the field is not empty, the version in the package name will be verified to be consistent with what is provided here.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Object
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

fullyQualifiedName → const String