AddOn.fromJson constructor
Implementation
factory AddOn.fromJson(Map<String, dynamic> json) {
return AddOn(
name: json['name'] as String?,
nextSnapshotTimeOfDay: json['nextSnapshotTimeOfDay'] as String?,
snapshotTimeOfDay: json['snapshotTimeOfDay'] as String?,
status: json['status'] as String?,
);
}