Guaranteed.fromJson constructor

Guaranteed.fromJson(
  1. Map json_
)

Implementation

Guaranteed.fromJson(core.Map json_)
    : this(
        minDuration: json_.containsKey('minDuration')
            ? json_['minDuration'] as core.String
            : null,
      );