PlayerError constructor

PlayerError({
  1. required String errorType,
  2. required int code,
  3. required List<PlayerErrorSourceLocation> stack,
  4. required List<PlayerError> cause,
  5. required Map<String, dynamic> data,
})

Implementation

PlayerError(
    {required this.errorType,
    required this.code,
    required this.stack,
    required this.cause,
    required this.data});