UnusedL10nIssue constructor

const UnusedL10nIssue({
  1. required String memberName,
  2. required SourceLocation location,
})

Initialize a newly created UnusedL10nIssue.

The issue is associated with the given location. Used for creating an unused localization report.

Implementation

const UnusedL10nIssue({
  required this.memberName,
  required this.location,
});