parse static method

AllocationProfile? parse(
  1. Map<String, dynamic>? json
)
override

Implementation

static AllocationProfile? parse(Map<String, dynamic>? json) =>
    json == null ? null : AllocationProfile._fromJson(json);