CustomMetadataValue constructor
- String getTagLambda()
Abstract class for storing arbitrary metadata types.
By implementing this abstract class, multiple object types can be stored as desired, simply by adding fields to the implementation that refer to those objects and then assigning an instance of the CustomMetadataValue derived class to a map item.
Implementation
factory CustomMetadataValue(
String Function() getTagLambda,
) => CustomMetadataValue$Lambdas(
getTagLambda,
);