blobEntityInfoString method

String blobEntityInfoString([
  1. String? toStringBody
])

Implementation

String blobEntityInfoString([String? toStringBody]) {
  return '${additionalInfoBasedString('tenantId: $tenantId, customerId: $customerId, name: $name, type: $type, '
      'contentType: $contentType${toStringBody != null ? ', ' + toStringBody : ''}')}';
}