isIosProjectPresent property

bool get isIosProjectPresent

Returns true if the ios/ directory exists in the project.

Implementation

bool get isIosProjectPresent {
  return Directory(p.join(projectRoot, 'ios')).existsSync();
}