fixed warnings
This commit is contained in:
@@ -5,7 +5,7 @@ import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
||||
import 'update_tile.i18n.dart';
|
||||
|
||||
class UpdateTile extends StatelessWidget {
|
||||
const UpdateTile(this.release, {Key? key, this.onTap, this.padding}) : super(key: key);
|
||||
const UpdateTile(this.release, {super.key, this.onTap, this.padding});
|
||||
|
||||
final Release release;
|
||||
final Function()? onTap;
|
||||
|
||||
@@ -4,7 +4,7 @@ import 'package:filcnaplo_mobile_ui/common/widgets/update/updates_view.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class UpdateViewable extends StatelessWidget {
|
||||
const UpdateViewable(this.release, {Key? key}) : super(key: key);
|
||||
const UpdateViewable(this.release, {super.key});
|
||||
|
||||
final Release release;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user