EmbeddedObjectPosition.fromJson constructor

EmbeddedObjectPosition.fromJson(
  1. Map json_
)

Implementation

EmbeddedObjectPosition.fromJson(core.Map json_)
    : this(
        newSheet: json_.containsKey('newSheet')
            ? json_['newSheet'] as core.bool
            : null,
        overlayPosition: json_.containsKey('overlayPosition')
            ? OverlayPosition.fromJson(json_['overlayPosition']
                as core.Map<core.String, core.dynamic>)
            : null,
        sheetId: json_.containsKey('sheetId')
            ? json_['sheetId'] as core.int
            : null,
      );