RestOptions constructor

const RestOptions({
  1. required String path,
  2. String? apiName,
  3. Uint8List? body,
  4. Map<String, String>? queryParameters,
  5. Map<String, String>? headers,
})

Implementation

const RestOptions({
  required this.path,
  this.apiName,
  this.body,
  this.queryParameters,
  this.headers,
});