BlockfrostError constructor

const BlockfrostError({
  1. required String message,
  2. required int statusCode,
  3. required String error,
  4. Map<String, dynamic>? details,
})

Implementation

const BlockfrostError(
    {required this.message,
    required this.statusCode,
    required this.error,
    this.details});