Remote constructor

const Remote({
  1. required String path,
  2. required String method,
  3. bool? enablePaging,
  4. Map<String, dynamic>? headers,
})

Implementation

const Remote({
  required this.path,
  required this.method,
  this.enablePaging,
  this.headers,
}) : super(method, path);