chore(repo): add lints, update freezed, json_serializable

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2022-05-16 16:58:24 +05:30
committed by xsahil03x
parent 2499755a05
commit 069f380f41
170 changed files with 616 additions and 737 deletions
@@ -20,10 +20,10 @@ class StreamChannelHeaderTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamChannelHeaderTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamChannelHeaderThemeData data;
@@ -20,10 +20,10 @@ class StreamChannelListHeaderTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamChannelListHeaderTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamChannelListHeaderThemeData data;
@@ -18,10 +18,10 @@ class StreamChannelListViewTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamChannelListViewTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamChannelListViewThemeData data;
@@ -19,10 +19,10 @@ class StreamChannelPreviewTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamChannelPreviewTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamChannelPreviewThemeData data;
@@ -18,10 +18,10 @@ class StreamGalleryFooterTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamGalleryFooterTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamGalleryFooterThemeData data;
@@ -18,10 +18,10 @@ class StreamGalleryHeaderTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamGalleryHeaderTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamGalleryHeaderThemeData data;
@@ -21,10 +21,10 @@ class StreamMessageInputTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamMessageInputTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamMessageInputThemeData data;
@@ -18,10 +18,10 @@ class StreamMessageListViewTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamMessageListViewTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamMessageListViewThemeData data;
@@ -18,10 +18,10 @@ class StreamMessageSearchListViewTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamMessageSearchListViewTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamMessageSearchListViewThemeData data;
@@ -18,10 +18,10 @@ class StreamUserListViewTheme extends InheritedTheme {
///
/// The [data] parameter must not be null.
const StreamUserListViewTheme({
Key? key,
super.key,
required this.data,
required Widget child,
}) : super(key: key, child: child);
required super.child,
});
/// The configuration of this theme.
final StreamUserListViewThemeData data;