setApiKey method

Future<bool> setApiKey(
  1. String k
)

Implementation

Future<bool> setApiKey(String k) async {
  apiKey = k;
  lastStatus = AIStatus.inactive;
  return await testModel();
}