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 Name | Description | First Argument | Second Argument | Third Argument | Return |
---|---|---|---|---|---|
getSavedFieldByIdAndCurrentMetadata | Get the saved field by its id and current metadata | fieldIdentifier: the slug of the field | dynamic | ||
getSavedFieldByIdAndCurrentMetadataAndSubMetadata | Get the saved field by its id and current metadata and sub-metadata | fieldIdentifier: the slug of the field | metadata: the sub-metadata | dynamic | |
getSavedFieldByIdAndMetadata | Get the saved field by its id and metadata | fieldIdentifier: the slug of the field | metadata: the metadata | dynamic | |
getSavedFieldByIdAndSubMetadata | Get the saved field by its id and sub-metadata | fieldIdentifier: the slug of the field | metadata: the metadata | List<dynamic> | |
getSavedFieldsById | Get the saved fields by their id | fieldIdentifier: the slug of the field | List<dynamic> | ||
getSavedFieldsIdentifierAndValueByIdAndSubMetadata | Get the saved fields identifier and value by their id and the sub-metadata | fieldIdentifier: the slug of the field | metadata: the sub-metadata | Map<DartFieldIdentifier, dynamic> | |
getSavedFirstFieldById | Get the first field saved by its id | fieldIdentifier: the slug of the field | dynamic |