PerformDiskShrinkContext.fromJson constructor

PerformDiskShrinkContext.fromJson(
  1. Map json_
)

Implementation

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