IndexedAttributeMissingException.fromJson constructor

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

Implementation

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