flutter_sanity 1.0.1 flutter_sanity: ^1.0.1 copied to clipboard
Flutter library for Sanity.io
import 'package:flutter_sanity/flutter_sanity.dart';
void main() async {
final sanityClient = SanityClient(
dataset: 'dataSet',
projectId: 'projectId',
);
final response = await sanityClient.fetch('*[_type == "post"]');
print(response);
}