NativeError constructor

NativeError({
  1. required int code,
  2. required String description,
})

Implementation

NativeError({
  required this.code,
  required this.description,
});