SdkError constructor

SdkError({
  1. required String message,
  2. String? code,
  3. dynamic details,
})

Creates an instance of SdkError.

Implementation

SdkError({required this.message, this.code, this.details});