GoogleAppsDriveLabelsV2LabelAppliedCapabilities.fromJson constructor

GoogleAppsDriveLabelsV2LabelAppliedCapabilities.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2LabelAppliedCapabilities.fromJson(core.Map json_)
    : this(
        canApply: json_.containsKey('canApply')
            ? json_['canApply'] as core.bool
            : null,
        canRead: json_.containsKey('canRead')
            ? json_['canRead'] as core.bool
            : null,
        canRemove: json_.containsKey('canRemove')
            ? json_['canRemove'] as core.bool
            : null,
      );