ActionStopSound.fromJson constructor

ActionStopSound.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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