Method
data class Method(val command: String, val import: String, val method: String, val async: Boolean = false, val responseDataType: AbstractType, val requestDataType: AbstractType? = null, val requestParameterName: String? = null)
Data class to contain information about analyzed Kotlin (Platform) code which is used to generate Dart code in the Flutter lib folder.
Constructors
Link copied to clipboard
constructor(command: String, import: String, method: String, async: Boolean = false, responseDataType: AbstractType, requestDataType: AbstractType? = null, requestParameterName: String? = null)