EndPointData constructor

EndPointData({
  1. required String path,
  2. required String endpoint,
  3. Methods? method,
  4. List<String>? allowedSHAFingerprints,
})

Implementation

EndPointData({required this.path, required String endpoint, Methods? method, this.allowedSHAFingerprints}) {
  this.endpoint = "$path/$endpoint";
  this.method = method ?? this.method;
}