AllocationAccumulator.fromJson constructor

AllocationAccumulator.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AllocationAccumulator.fromJson(Map<String, dynamic> json) =>
    AllocationAccumulator(
      json['start'] as bool,
      json['continues'] as bool,
      json['reset'] as bool,
    );