BlobEntityInfo.fromJson constructor

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

Implementation

BlobEntityInfo.fromJson(Map<String, dynamic> json)
    : tenantId = TenantId.fromJson(json['tenantId']),
      customerId = json['customerId'] != null
          ? CustomerId.fromJson(json['customerId'])
          : null,
      name = json['name'],
      type = json['type'],
      contentType = json['contentType'],
      super.fromJson(json);