ContentfulQuery constructor

ContentfulQuery({
  1. required String key,
  2. ContentfulQueryType type = ContentfulQueryType.Equal,
  3. dynamic value,
})

Implementation

ContentfulQuery({
  required String key,
  ContentfulQueryType type = ContentfulQueryType.Equal,
  dynamic value
}):
  _key = key,
  _type = type,
  _value = value;