toDocumentAttributeValueType method

DocumentAttributeValueType toDocumentAttributeValueType()

Implementation

DocumentAttributeValueType toDocumentAttributeValueType() {
  switch (this) {
    case 'STRING_VALUE':
      return DocumentAttributeValueType.stringValue;
    case 'STRING_LIST_VALUE':
      return DocumentAttributeValueType.stringListValue;
    case 'LONG_VALUE':
      return DocumentAttributeValueType.longValue;
    case 'DATE_VALUE':
      return DocumentAttributeValueType.dateValue;
  }
  throw Exception('$this is not known in enum DocumentAttributeValueType');
}