ActionStopSound.fromJson constructor
Implementation
factory ActionStopSound.fromJson(Map<String, dynamic> json) => ActionStopSound(
id: (json['Id'] as String?) ?? '',
fadeoutTimeInSec: (json['FadeoutTimeInSec'] as num?)?.toDouble() ?? 0.0,
);