MiniProgramRenderException constructor

const MiniProgramRenderException({
  1. required String message,
  2. String errorCode = MiniProgramErrorCodes.manifestParseFailure,
  3. Map<String, dynamic> details = const <String, dynamic>{},
})

Creates a controlled render exception.

Implementation

const MiniProgramRenderException({
  required this.message,
  this.errorCode = MiniProgramErrorCodes.manifestParseFailure,
  this.details = const <String, dynamic>{},
});