AllocationOptions.fromJson constructor

AllocationOptions.fromJson(
  1. Map json_
)

Implementation

AllocationOptions.fromJson(core.Map json_)
  : this(
      allocationStrategy: json_['allocationStrategy'] as core.String?,
      firstAvailableRangesLookupSize:
          json_['firstAvailableRangesLookupSize'] as core.int?,
    );