getUpdatedAt method

Int64 getUpdatedAt()

Retrieves the block height as of this recipe's last update.

Not available on partial recipes.

Implementation

Int64 getUpdatedAt() {
  if (_native == null) {
    throw UnsupportedError('Cannot get recipe fields from a partial recipe - use Recipe.get() if you need that data');
  }
  return _native!.updatedAt;
}