fromJson static method

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

Implementation

static ErrorMessageAlternateEntity fromJson(Map<String, dynamic> json) =>
    ErrorMessageAlternateEntity(
        json['title'],
        json['details'],
        json['code'],
        json['target'],
        json['source'] != null ? ErrorSourceEntity(json['source']) : null,
        json['meta']);