TrackDefinition.fromJson constructor
      
      TrackDefinition.fromJson(
    
    
- Map json_
Implementation
TrackDefinition.fromJson(core.Map json_)
  : this(
      detectLanguages: json_['detectLanguages'] as core.bool?,
      detectedLanguages:
          (json_['detectedLanguages'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      inputTrack: json_['inputTrack'] as core.int?,
      languages:
          (json_['languages'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );