ContentfulDeliveryAPIRepository constructor

const ContentfulDeliveryAPIRepository({
  1. required ContentfulClient client,
  2. String baseUrl = 'https://cdn.contentful.com',
})

Implementation

const ContentfulDeliveryAPIRepository({
  required ContentfulClient client,
  String baseUrl = 'https://cdn.contentful.com',
})  : _client = client,
      _baseUrl = baseUrl;