Rollback.fromJson constructor

Rollback.fromJson(
  1. Map json_
)

Implementation

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