Skip to main content

Get

info

fieldIdentifier where ids but this method is deprecated, use fieldSlug instead

getSavedFieldByIdAndCurrentMetadata

Get the saved field by its id and current metadata

Arguments

  • fieldIdentifier: string the slug of the field

Return dynamic

local field = getSavedFieldByIdAndCurrentMetadata(fieldIdentifier)

getSavedFieldByIdAndCurrentMetadataAndSubMetadata

Get the saved field by its id and current metadata and sub-metadata

Arguments

  • fieldIdentifier: string the slug of the field
  • metadata: Map<String, dynamic> the sub-metadata

Return dynamic

local field = getSavedFieldByIdAndCurrentMetadataAndSubMetadata(fieldIdentifier, metadata)

getSavedFieldByIdAndMetadata

Get the saved field by its id and metadata

Arguments

  • fieldIdentifier: string the slug of the field
  • metadata: Map<String, dynamic> the metadata

Return dynamic

local field = getSavedFieldByIdAndMetadata(fieldIdentifier, metadata)

getSavedFieldByIdAndSubMetadata

Get the saved field by its id and sub-metadata

Arguments

  • fieldIdentifier: string the slug of the field
  • metadata: Map<String, dynamic> the sub-metadata

Return List of dynamic

local fields = getSavedFieldByIdAndSubMetadata(fieldIdentifier, metadata)

getSavedFieldsById

Get the saved fields by their id

Arguments

  • fieldIdentifier: string the slug of the field

Return List of dynamic

local fields = getSavedFieldsById(fieldIdentifier)

getSavedFieldsIdentifierAndValueByIdAndSubMetadata

Get the saved fields identifier and value by their id and the sub-metadata

Arguments

  • fieldIdentifier: string the slug of the field
  • metadata: Map<String, dynamic> the sub-metadata

Return Map of DartFieldIdentifier to dynamic

local fields = getSavedFieldsIdentifierAndValueByIdAndSubMetadata(fieldIdentifier, metadata)

getSavedFirstFieldById

Get the first field saved by its id

Arguments

  • fieldIdentifier: string the slug of the field

Return dynamic

local field = getSavedFirstFieldById(fieldIdentifier)

Table

Function NameDescriptionFirst ArgumentSecond ArgumentThird ArgumentReturn
getSavedFieldByIdAndCurrentMetadataGet the saved field by its id and current metadatafieldIdentifier: the slug of the fielddynamic
getSavedFieldByIdAndCurrentMetadataAndSubMetadataGet the saved field by its id and current metadata and sub-metadatafieldIdentifier: the slug of the fieldmetadata: the sub-metadatadynamic
getSavedFieldByIdAndMetadataGet the saved field by its id and metadatafieldIdentifier: the slug of the fieldmetadata: the metadatadynamic
getSavedFieldByIdAndSubMetadataGet the saved field by its id and sub-metadatafieldIdentifier: the slug of the fieldmetadata: the metadataList<dynamic>
getSavedFieldsByIdGet the saved fields by their idfieldIdentifier: the slug of the fieldList<dynamic>
getSavedFieldsIdentifierAndValueByIdAndSubMetadataGet the saved fields identifier and value by their id and the sub-metadatafieldIdentifier: the slug of the fieldmetadata: the sub-metadataMap<DartFieldIdentifier, dynamic>
getSavedFirstFieldByIdGet the first field saved by its idfieldIdentifier: the slug of the fielddynamic