mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
7eefe196c9
we may need to store a quote or "estimate" in the provider for UI dataflow purposes (because we can't run async functions in widget builds/constructors?)
6 lines
188 B
Dart
6 lines
188 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:stackwallet/models/buy/simplex/simplex.dart';
|
|
|
|
final simplexProvider = Provider<Simplex>(
|
|
(ref) => Simplex(),
|
|
);
|