addKeys function

void addKeys(
  1. Map<String, String> keys
)

Adds API key to the Bible Map.

The key of the map must be the name of the bible provider in lowercase single-word format i.e 'Esv API' -> 'esvapi'. See the read me or the providers library for the registered name of every API.

Implementation

void addKeys(Map<String, String> keys) {
  _keys.addAll(keys);
}