25 lines
488 B
Dart
25 lines
488 B
Dart
|
// GENERATED FILE, DO NOT MODIFY
|
||
|
// Generated with jaspr_builder
|
||
|
|
||
|
import 'package:jaspr/jaspr.dart';
|
||
|
|
||
|
/// Default [JasprOptions] for use with your jaspr project.
|
||
|
///
|
||
|
/// Use this to initialize jaspr **before** calling [runApp].
|
||
|
///
|
||
|
/// Example:
|
||
|
/// ```dart
|
||
|
/// import 'jaspr_options.dart';
|
||
|
///
|
||
|
/// void main() {
|
||
|
/// Jaspr.initializeApp(
|
||
|
/// options: defaultJasprOptions,
|
||
|
/// );
|
||
|
///
|
||
|
/// runApp(...);
|
||
|
/// }
|
||
|
/// ```
|
||
|
final defaultJasprOptions = JasprOptions(
|
||
|
styles: () => [],
|
||
|
);
|