FetchOption constructor

FetchOption({
  1. required String method,
  2. Map<String, String>? headers,
  3. Object? body,
})

Implementation

FetchOption({
  required this.method,
  this.headers,
  this.body,
});