flutter_sanity_plus 2.0.0+1 flutter_sanity_plus: ^2.0.0+1 copied to clipboard
Dart libary to query the Sanity.io API. Supports running queries and downloading files.
import 'package:flutter_sanity_plus/flutter_sanity_plus.dart';
void main() async {
final sanityClient = SanityClient(
dataset: 'dataSet',
projectId: 'projectId',
);
final response = await sanityClient.fetch('*[_type == "post"]');
print(response);
}