Converter.fromJson constructor

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

Implementation

Converter.fromJson(Map<String, dynamic> json)
    : tenantId = TenantId.fromJson(json['tenantId']),
      name = json['name'],
      type = converterTypeFromString(json['type']),
      debugMode = json['debugMode'],
      configuration = json['configuration'],
      externalId = json['externalId'] != null
          ? ConverterId.fromJson(json['externalId'])
          : null,
      super.fromJson(json);