UnsupportedIndexTypeException.fromJson constructor

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

Implementation

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