loadKeyFileContent method

void loadKeyFileContent()

Implementation

void loadKeyFileContent() {
  try {
    _keyFileContent = File(_keyFilePath).readAsStringSync();
  } catch (e) {
    throw FileSystemException(
        'Could not load the Apple App Store Connect key file', _keyFilePath);
  }
}