KotlinGenerator class
Class that manages all Kotlin code generation.
- Inheritance
-
- Object
- Generator<
KotlinOptions> - StructuredGenerator<
KotlinOptions> - KotlinGenerator
Constructors
- KotlinGenerator()
-
Instantiates a Kotlin Generator.
const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
generate(
KotlinOptions generatorOptions, Root root, StringSink sink, {required String dartPackageName}) → void -
Generates files for specified language with specified
generatorOptions
inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
writeApis(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes all apis to
indent
.override -
writeClassDecode(
KotlinOptions generatorOptions, Root root, Indent indent, Class classDefinition, {required String dartPackageName}) → void -
Writes a single class decode method to
indent
.override -
writeClassEncode(
KotlinOptions generatorOptions, Root root, Indent indent, Class classDefinition, {required String dartPackageName}) → void -
Writes a single class encode method to
indent
.override -
writeCloseNamespace(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes code to
indent
that closes file namespace if needed.inherited -
writeDataClass(
KotlinOptions generatorOptions, Root root, Indent indent, Class classDefinition, {required String dartPackageName}) → void -
Writes a single data class to
indent
.override -
writeDataClasses(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes all data classes to
indent
.inherited -
writeEnum(
KotlinOptions generatorOptions, Root root, Indent indent, Enum anEnum, {required String dartPackageName}) → void -
Writes a single Enum to
indent
. This is needed in most generators.override -
writeEnums(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes all enums to
indent
.inherited -
writeFileImports(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes specified imports to
indent
.override -
writeFilePrologue(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Adds specified headers to
indent
.override -
writeFlutterApi(
KotlinOptions generatorOptions, Root root, Indent indent, AstFlutterApi api, {required String dartPackageName}) → void -
Writes the code for a flutter Api,
api
. Example: class Foo(private val binaryMessenger: BinaryMessenger) { fun add(x: Int, y: Int, callback: (Int?) -> Unit) {...} }override -
writeGeneralUtilities(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes any necessary helper utilities to
indent
if needed.override -
writeHostApi(
KotlinOptions generatorOptions, Root root, Indent indent, AstHostApi api, {required String dartPackageName}) → void -
Write the kotlin code that represents a host Api,
api
. Example: interface Foo { Int add(x: Int, y: Int); companion object { fun setUp(binaryMessenger: BinaryMessenger, api: Api) {...} } }override -
writeInstanceManager(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes the implementation of an
InstanceManager
toindent
.inherited -
writeInstanceManagerApi(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes the implementation of the API for the
InstanceManager
toindent
.inherited -
writeOpenNamespace(
KotlinOptions generatorOptions, Root root, Indent indent, {required String dartPackageName}) → void -
Writes code to
indent
that opens file namespace if needed.inherited -
writeProxyApi(
KotlinOptions generatorOptions, Root root, Indent indent, AstProxyApi api, {required String dartPackageName}) → void -
Writes a single Proxy Api to
indent
.inherited -
writeProxyApiBaseCodec(
KotlinOptions generatorOptions, Root root, Indent indent) → void -
Writes the base codec to be used by all ProxyApis.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited