OCClassDeclaration constructor

OCClassDeclaration({
  1. String className = '',
  2. String parentClass = '',
  3. List<Variable> properties = const [],
  4. bool isInterface = false,
  5. bool isProtocol = false,
  6. bool hasExtension = false,
  7. String extensionName = '',
  8. List<Method> instanceMethods = const [],
  9. List<Method> classMethods = const [],
  10. int depth = 0,
})

Implementation

OCClassDeclaration(
    {this.className = '',
    this.parentClass = '',
    this.properties = const [],
    this.isInterface = false,
    this.isProtocol = false,
    this.hasExtension = false,
    this.extensionName = '',
    this.instanceMethods = const [],
    this.classMethods = const [],
    int depth = 0})
    : super(depth);