AirtableException constructor

AirtableException({
  1. required String message,
  2. String? details,
})

Creates an instance of AirtableException with the given message and optional details.

  • message: A brief description of the error.
  • details: Optional additional information about the error.

Implementation

AirtableException({required this.message, this.details});