fromMap static method

LabelledBodyComponentEntity? fromMap(
  1. Object? o, {
  2. Map<String, String>? newDocumentIds,
})

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'],
  );
}