ActionPlaySound.fromJson constructor
Implementation
factory ActionPlaySound.fromJson(Map<String, dynamic> json) => ActionPlaySound(
url: (json['Url'] as String?) ?? '',
count: (json['Count'] as num?)?.toInt() ?? 0,
id: (json['Id'] as String?) ?? '',
);