13 lines
370 B
Plaintext
13 lines
370 B
Plaintext
import 'package:invoiceninja_flutter/main_app.dart';
|
|
import 'package:invoiceninja_flutter/utils/platforms.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
class AppReview {
|
|
static Future<bool> isAvailable() async => false;
|
|
|
|
static void requestReview() => null;
|
|
|
|
static void openStoreListing() =>
|
|
launch(getRateAppURL(navigatorKey.currentContext));
|
|
}
|