TruecallerError.fromJson constructor

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

get the TruecallerError values from Json

Implementation

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