ImportStatefileRequest.fromJson constructor

ImportStatefileRequest.fromJson(
  1. Map json_
)

Implementation

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