SecurityInformationDto constructor

SecurityInformationDto(
  1. {String? title,
  2. List<SecurityInformationDataDto>? data,
  3. required TseTypeDto type}
)

Implementation

SecurityInformationDto({
  this.title,
  this.data,
  required TseTypeDto type,
}) : super(
        type: type,
      );