TypedAttributeValue.fromJson constructor

TypedAttributeValue.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TypedAttributeValue.fromJson(Map<String, dynamic> json) {
  return TypedAttributeValue(
    binaryValue: _s.decodeNullableUint8List(json['BinaryValue'] as String?),
    booleanValue: json['BooleanValue'] as bool?,
    datetimeValue: timeStampFromJson(json['DatetimeValue']),
    numberValue: json['NumberValue'] as String?,
    stringValue: json['StringValue'] as String?,
  );
}