esv_bible 0.2.0 esv_bible: ^0.2.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 = GetPassage.text(apiKey);
final passageText = await passage('John 3:16');
print(passageText.passages[0]);
}