DocumentsApiQuery.fromMap constructor

DocumentsApiQuery.fromMap(
  1. Map map
)

This is a constructor that creates a new instance of the DocumentsApiQuery class from a Map object.

Implementation

DocumentsApiQuery.fromMap(Map map)
    : this(
          type: map['type'],
          typeValue: map['typeValue'],
          version: map['version']);