dataClassName property

String? dataClassName
final

The name for the data class that will be generated for the view class. The data class is a dart object that will be used to represent a result of the view. By default, drift will attempt to use the view name followed by "Data" when naming data classes (e.g. a view named "UserView" will generate a data class called "UserViewData").

Implementation

final String? dataClassName;