OkfBundleLoadIssue constructor

const OkfBundleLoadIssue({
  1. required String code,
  2. required String message,
  3. required String path,
  4. int? line,
  5. int? column,
})

Creates a bundle loading issue.

Implementation

const OkfBundleLoadIssue({
  required this.code,
  required this.message,
  required this.path,
  this.line,
  this.column,
});