superType property

Type? superType
final

Define the super class type that the generated super will be sub off, in other words this define the super of the super.

@Super(superType: Model)
class UserModel extends _UserModel {}

// generated code

abstract class _UserModel extends Model {}

Implementation

final Type? superType;