TrackInfo.fromJson constructor

TrackInfo.fromJson(
  1. Map json_
)

Implementation

TrackInfo.fromJson(core.Map json_)
  : this(
      trackAlias: json_['trackAlias'] as core.String?,
      trackId: json_['trackId'] as core.String?,
    );