SQLiteDataEndPoint constructor

SQLiteDataEndPoint({
  1. String type = DataEndPointTypes.SQLITE,
  2. String dataFormat = NameSpace.CARP,
})

Creates a SQLiteDataEndPoint.

type is defined in DataEndPointTypes. Is typically of type DataEndPointType.SQLITE but specialized file types can be specified.

Implementation

SQLiteDataEndPoint({
  super.type = DataEndPointTypes.SQLITE,
  super.dataFormat = NameSpace.CARP,
});