mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
8 lines
212 B
Dart
8 lines
212 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension LunaAsyncSnapshotExtension on AsyncSnapshot {
|
|
bool get lunaIsFinishedWithData {
|
|
return this.connectionState == ConnectionState.done && this.hasData;
|
|
}
|
|
}
|