ThrottlingException.fromJson constructor

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

Implementation

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