fromJson static method

Entity fromJson(
  1. Map<String, dynamic> json,
  2. EntitySystem system
)

Implementation

static Entity fromJson(Map<String, dynamic> json, EntitySystem system) {
  return system.createFromJson(json);
}