mirror of
https://github.com/foss42/apidash.git
synced 2025-12-12 16:17:34 +08:00
6 lines
143 B
Dart
6 lines
143 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
final beautifyJsonProvider = StateProvider.autoDispose<String?>(
|
|
(ref) => null,
|
|
);
|