buildHeaderOptions method

Future<Options?> buildHeaderOptions({
  1. String? contentType = Headers.jsonContentType,
})

Implementation

Future<Options?> buildHeaderOptions(
    {String? contentType = Headers.jsonContentType}) async {
  return Options(headers: buildHeaders(), contentType: contentType);
}