CreateParagraphBulletsRequest.fromJson constructor

CreateParagraphBulletsRequest.fromJson(
  1. Map json_
)

Implementation

CreateParagraphBulletsRequest.fromJson(core.Map json_)
    : this(
        bulletPreset: json_['bulletPreset'] as core.String?,
        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,
      );