28 lines
655 B
Dart
28 lines
655 B
Dart
import 'package:built_collection/built_collection.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_actions.dart';
|
|
|
|
class ViewReports extends AbstractNavigatorAction implements PersistUI {
|
|
ViewReports({
|
|
@required NavigatorState navigator,
|
|
this.report,
|
|
this.force = false,
|
|
}) : super(navigator: navigator);
|
|
|
|
final bool force;
|
|
final String report;
|
|
}
|
|
|
|
class UpdateReportSettings implements PersistUI {
|
|
UpdateReportSettings({
|
|
@required this.report,
|
|
this.filters,
|
|
this.sortIndex,
|
|
});
|
|
|
|
final String report;
|
|
final BuiltMap<String, String> filters;
|
|
final int sortIndex;
|
|
}
|
|
|