writeGeneralUtilities method

  1. @override
void writeGeneralUtilities(
  1. CppOptions generatorOptions,
  2. Root root,
  3. Indent indent, {
  4. required String dartPackageName,
})
override

Writes any necessary helper utilities to indent if needed.

This method is not required, and does not need to be overridden.

Implementation

@override
void writeGeneralUtilities(
  CppOptions generatorOptions,
  Root root,
  Indent indent, {
  required String dartPackageName,
}) {
  final bool hasHostApi = root.apis.any((Api api) =>
      api.methods.isNotEmpty && api.location == ApiLocation.host);
  final bool hasFlutterApi = root.apis.any((Api api) =>
      api.methods.isNotEmpty && api.location == ApiLocation.flutter);

  _writeFlutterError(indent);
  if (hasHostApi) {
    _writeErrorOr(indent, friends: root.apis.map((Api api) => api.name));
  }
  if (hasFlutterApi) {
    // Nothing yet.
  }
}