Path

data class Path(var source: Position? = null, var dest: Position? = null, var path: List<CustomPath>? = null, var step: List<Step>? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(source: Position? = null, dest: Position? = null, path: List<CustomPath>? = null, step: List<Step>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var step: List<Step>?

Functions

Link copied to clipboard
open override fun toString(): String

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)