fromMap static method
Implementation
static LabelledBodyComponentEntity? fromMap(Object? o,
{Map<String, String>? newDocumentIds}) {
if (o == null) return null;
var map = o as Map<String, dynamic>;
return LabelledBodyComponentEntity(
label: map['label'],
componentName: map['componentName'],
componentId: map['componentId'],
);
}