LogExclusion.fromJson constructor
Implementation
factory LogExclusion.fromJson(Map<String, dynamic> json) {
return LogExclusion(
name: json['name'] ?? '',
description: json['description'] ?? '',
filter: json['filter'] ?? '',
disabled: json['disabled'] ?? false,
createTime: decodeCustom(json['createTime'], Timestamp.fromJson),
updateTime: decodeCustom(json['updateTime'], Timestamp.fromJson),
);
}