fromMap static method

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

Implementation

static OrderReferencesEntity? fromMap(Object? o,
    {Map<String, String>? newDocumentIds}) {
  if (o == null) return null;
  var map = o as Map<String, dynamic>;

  return OrderReferencesEntity(
    paymentReference: map['paymentReference'],
    shipmentReference: map['shipmentReference'],
    deliveryReference: map['deliveryReference'],
  );
}