RecordingSourceInformation constructor

RecordingSourceInformation(
  1. {required String sourceId,
  2. required String name,
  3. required String location,
  4. required String description,
  5. required String address}
)

Implementation

RecordingSourceInformation({
  required this.sourceId,
  required this.name,
  required this.location,
  required this.description,
  required this.address,
});