fromMap static method
Deserializes SceneLoaded from a map.
Mainly for internal use.
Implementation
static SceneLoaded? fromMap(dynamic json) {
if (json == null) {
return null;
}
return SceneLoaded(
name: json['name'],
buildIndex: json['buildIndex'],
isLoaded: json['isLoaded'],
isValid: json['isValid'],
);
}