getContentSchemaString function

String? getContentSchemaString(
  1. BranchContentSchema? contentSchema
)

Implementation

String? getContentSchemaString(BranchContentSchema? contentSchema) {
  if (contentSchema == null) return null;
  return contentSchema.toString().split('.').last;
}