CustomerId.fromJson constructor

  1. @override
CustomerId.fromJson(
  1. Map<String, dynamic> json
)

Implementation

@override
factory CustomerId.fromJson(Map<String, dynamic> json) {
  return EntityId.fromJson(json) as CustomerId;
}