TruecallerException.fromJson constructor

TruecallerException.fromJson(
  1. Map<String, dynamic> map
)

get the TruecallerException values from Json

Implementation

TruecallerException.fromJson(Map<String, dynamic> map) {
  code = map['mExceptionType'];
  message = map['mExceptionMessage'];
}