Issue.other constructor

Issue.other(
  1. String error, {
  2. IssueLayer layer = IssueLayer.app,
  3. int statusCode = 0,
})

Implementation

factory Issue.other(
  String error, {
  IssueLayer layer = IssueLayer.app,
  int statusCode = 0,
}) =>
    Issue._(
      error,
      layer,
      IssueType.other,
      statusCode: statusCode,
    );