SCAccessSourceModel constructor

SCAccessSourceModel({
  1. required String userId,
  2. required String sourceId,
  3. required String sourceName,
  4. required AccessAction action,
  5. required String channelId,
  6. required int timeLength,
  7. required SourceType sourceType,
  8. String? offTime,
  9. String? path,
  10. String? summary,
  11. String? sourceTag,
})

Implementation

SCAccessSourceModel(
    {required super.userId,
    required super.sourceId,
    required super.sourceName,
    required this.action,
    required this.channelId,
    required this.timeLength,
    required this.sourceType,
    this.offTime,
    this.path,
    this.summary,
    this.sourceTag});