mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-11 17:49:27 -05:00
style: lint fix apply
This commit is contained in:
@@ -129,9 +129,9 @@ bool isNotNullOrEmpty(String? text) {
|
||||
|
||||
// TODO: Primer
|
||||
class PrimerBranchName extends StatelessWidget {
|
||||
final String? name;
|
||||
|
||||
const PrimerBranchName(this.name);
|
||||
final String? name;
|
||||
|
||||
static const branchBgColor = Color(0xffeaf5ff);
|
||||
|
||||
@@ -180,13 +180,13 @@ int sortByKey<T>(T key, T a, T b) {
|
||||
const TOTAL_COUNT_FALLBACK = 999; // TODO:
|
||||
|
||||
class ListPayload<T, K> {
|
||||
K cursor;
|
||||
bool hasMore;
|
||||
Iterable<T> items;
|
||||
|
||||
ListPayload({
|
||||
required this.cursor,
|
||||
required this.hasMore,
|
||||
required this.items,
|
||||
});
|
||||
K cursor;
|
||||
bool hasMore;
|
||||
Iterable<T> items;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user