writeGeneralUtilities method
void
writeGeneralUtilities(
- KotlinOptions generatorOptions,
- Root root,
- Indent indent, {
- 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(
KotlinOptions generatorOptions,
Root root,
Indent indent, {
required String dartPackageName,
}) {
final bool hasHostApi = root.apis
.whereType<AstHostApi>()
.any((Api api) => api.methods.isNotEmpty);
final bool hasFlutterApi = root.apis
.whereType<AstFlutterApi>()
.any((Api api) => api.methods.isNotEmpty);
final bool hasProxyApi = root.apis.any((Api api) => api is AstProxyApi);
if (hasHostApi || hasProxyApi) {
_writeWrapResult(indent);
_writeWrapError(generatorOptions, indent);
}
if (hasFlutterApi || hasProxyApi) {
_writeCreateConnectionError(generatorOptions, indent);
}
if (generatorOptions.includeErrorClass) {
_writeErrorClass(generatorOptions, indent);
}
}