ChannelContentOwnerDetails.fromJson constructor
ChannelContentOwnerDetails.fromJson(
- Map json_
Implementation
ChannelContentOwnerDetails.fromJson(core.Map json_)
: this(
contentOwner: json_.containsKey('contentOwner')
? json_['contentOwner'] as core.String
: null,
timeLinked: json_.containsKey('timeLinked')
? core.DateTime.parse(json_['timeLinked'] as core.String)
: null,
);