analysis fixes

This commit is contained in:
Deven Joshi
2021-11-03 14:11:56 +05:30
parent 5c09bf2110
commit bf30102d2b
@@ -1,12 +1,16 @@
import 'package:flutter/material.dart';
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
/// Button for showing visual component of slow mode.
class CountdownButton extends StatelessWidget {
/// Constructor for creating [CountdownButton].
const CountdownButton({
Key? key,
required this.count,
}) : super(key: key);
/// Count of time remaining to show to the user.
final int count;
@override