HtifyConf constructor

HtifyConf({
  1. String? baseUrl,
  2. Map<String, String> headerValue = const {},
})

Implementation

HtifyConf({this.baseUrl, Map<String, String> headerValue = const {}}) {
  header = {'Content-Type': 'application/json', 'Accept': 'application/json'};
  header?.addAll(headerValue);
}