SKError constructor

const SKError({
  1. required int code,
  2. required String domain,
  3. required Map<String?, Object?>? userInfo,
})

Creates a new SKError object with the provided information.

Implementation

const SKError(
    {required this.code, required this.domain, required this.userInfo});