esv_bible 0.3.0
esv_bible: ^0.3.0 copied to clipboard
A future-based dart package for the ESV API from Crossway which can be used to fetch ESV bible passages.
import 'package:esv_bible/esv_bible.dart';
void main () async {
const apiKey = 'your-api-key';
final passage = Passage(apiKey);
// PassageText
final passageText = await passage.text('John 3:16');
print(passageText.passages[0]);
}