IndexedAttributeMissingException.fromJson constructor
Implementation
factory IndexedAttributeMissingException.fromJson(Map<String, dynamic> json) {
return IndexedAttributeMissingException(
message: json['Message'] as String?,
);
}
factory IndexedAttributeMissingException.fromJson(Map<String, dynamic> json) {
return IndexedAttributeMissingException(
message: json['Message'] as String?,
);
}