DeleteParagraphBulletsRequest.fromJson constructor

DeleteParagraphBulletsRequest.fromJson(
  1. Map json_
)

Implementation

DeleteParagraphBulletsRequest.fromJson(core.Map json_)
  : this(
      cellLocation: json_.containsKey('cellLocation')
          ? TableCellLocation.fromJson(
              json_['cellLocation'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      objectId: json_['objectId'] as core.String?,
      textRange: json_.containsKey('textRange')
          ? Range.fromJson(
              json_['textRange'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );