Skip to content

Commit

Permalink
Updated linting
Browse files Browse the repository at this point in the history
  • Loading branch information
leoafarias committed Aug 8, 2023
1 parent 8d5aa36 commit c9300c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/src/models/latest_version_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ class LatestVersion {

@override
String toString() =>
'LatestVersion(needUpdate: $needUpdate, latestVersion: $latestVersion, packageInfo: $packageInfo)';
'''LatestVersion(needUpdate: $needUpdate, latestVersion: $latestVersion, packageInfo: $packageInfo)''';
}
2 changes: 1 addition & 1 deletion lib/src/models/package_documentation_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ class PackageDocumentationVersion {

@override
String toString() =>
'PackageDocumentationVersion(version: $version, status: $status, hasDocumentation: $hasDocumentation)';
'''PackageDocumentationVersion(version: $version, status: $status, hasDocumentation: $hasDocumentation)''';
}
2 changes: 1 addition & 1 deletion lib/src/models/package_options_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PackageOptions {

@override
String toString() =>
'PackageOptions(isDiscontinued: $isDiscontinued, isUnlisted: $isUnlisted, replacedBy: $replacedBy)';
'''PackageOptions(isDiscontinued: $isDiscontinued, isUnlisted: $isUnlisted, replacedBy: $replacedBy)''';

@override
bool operator ==(Object other) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/pub_package_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class PackageVersion {

@override
String toString() =>
'PackageVersion(version: $version, pubspec: $pubspec, archiveUrl: $archiveUrl, published: $published)';
'''PackageVersion(version: $version, pubspec: $pubspec, archiveUrl: $archiveUrl, published: $published)''';

@override
bool operator ==(Object other) {
Expand Down

0 comments on commit c9300c0

Please sign in to comment.