genObjcCode static method

void genObjcCode(
  1. List<GenClassBean> list,
  2. String projectPrefix,
  3. String savePath,
  4. String type, {
  5. bool nullSafeSupport = true,
})

Implementation

static void genObjcCode(
  List<GenClassBean> list,
  String projectPrefix,
  String savePath,
  String type, {
  bool nullSafeSupport = true,
}) {
  savePath += "/" + (projectPrefix + type).replaceAll(".", "/");
  platforms_source_start_gen_objc(projectPrefix, savePath, list,
      nullSafe: nullSafeSupport);
  convertResultType(savePath, projectPrefix);
}