BaseAPI constructor

const BaseAPI({
  1. required Client client,
  2. required String baseUrl,
  3. bool enterprise = false,
  4. Map<String, dynamic> kwargs = const {},
})

Implementation

const BaseAPI({
  required this.client,
  required this.baseUrl,
  this.enterprise = false,
  this.kwargs = const {},
});