meta property

  1. @override
Meta? get meta
override

Gets the entity metadata associated with this command.

  • Non-null: Response with metadata for the target identifier
  • Null: Query request for metadata of the target identifier

Implementation

@override
Meta? get meta {
  _meta ??= Meta.parse(this['meta']);
  return _meta;
}