DataEndPoint constructor

DataEndPoint({
  1. required String type,
  2. String dataFormat = NameSpace.CARP,
})

Creates a DataEndPoint. type is defined in DataEndPointTypes. dataFormat is defined in NameSpace. Default is NameSpace.CARP.

Implementation

DataEndPoint({
  required this.type,
  this.dataFormat = NameSpace.CARP,
}) : super();