Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class InscriptionContent extends HookWidget {
return AspectRatio(
aspectRatio: 1,
child: switch (inscription) {
Inscription(contentType: final type, contentUrl: final contentUrl)
Inscription(contentType: final type, :final contentUrl)
when type.startsWith('image') =>
MixinImage.network(
contentUrl,
Expand All @@ -42,7 +42,7 @@ class InscriptionContent extends HookWidget {
),
Inscription(
contentType: final type,
contentUrl: final contentUrl,
:final contentUrl,
iconUrl: final iconUrl?,
)
when type.startsWith('text') =>
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2118,10 +2118,10 @@ packages:
dependency: "direct dev"
description:
name: very_good_analysis
sha256: "27927d1140ce1b140f998b6340f730a626faa5b95110b3e34a238ff254d731d0"
sha256: d1cb1d66a5aae2c702d68caca6c8347306d35e728fd94555fa21fa0448a972e0
url: "https://pub.dev"
source: hosted
version: "10.1.0"
version: "10.2.0"
video_compress:
dependency: "direct main"
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ dev_dependencies:
url: https://github.com/riccardo-lomazzi/msix.git
ref: 75190427070d1a57873cfd895fb9251d0713ebd8
flutter_lints: ^6.0.0
very_good_analysis: ^10.1.0
very_good_analysis: ^10.2.0
envied_generator: ^1.3.3

# For information on the generic Dart part of this file, see the
Expand Down
Loading