DataAttributesBase constructor
- List<
String> getAttributeNamesLambda(), - DataAttributeValueValueType? getValueTypeLambda(
- String
- String? getAsStringLambda(
- String
- String? getStringLambda(
- String
- int? getInt64Lambda(
- String
- double? getFloatLambda(
- String
- double? getDoubleLambda(
- String
- bool? getBooleanLambda(
- String
- DataAttributeValue? getValueLambda(
- String
Interface for a collection of data attributes.
Note: This is a beta release of this feature, so there could be a few bugs and unexpected behavior. Related APIs may change for new releases without a deprecation process.
Implementation
factory DataAttributesBase(
List<String> Function() getAttributeNamesLambda,
DataAttributeValueValueType? Function(String) getValueTypeLambda,
String? Function(String) getAsStringLambda,
String? Function(String) getStringLambda,
int? Function(String) getInt64Lambda,
double? Function(String) getFloatLambda,
double? Function(String) getDoubleLambda,
bool? Function(String) getBooleanLambda,
DataAttributeValue? Function(String) getValueLambda,
) => DataAttributesBase$Lambdas(
getAttributeNamesLambda,
getValueTypeLambda,
getAsStringLambda,
getStringLambda,
getInt64Lambda,
getFloatLambda,
getDoubleLambda,
getBooleanLambda,
getValueLambda,
);