SlideProperties.fromJson constructor

SlideProperties.fromJson(
  1. Map json_
)

Implementation

SlideProperties.fromJson(core.Map json_)
  : this(
      isSkipped: json_['isSkipped'] as core.bool?,
      layoutObjectId: json_['layoutObjectId'] as core.String?,
      masterObjectId: json_['masterObjectId'] as core.String?,
      notesPage: json_.containsKey('notesPage')
          ? Page.fromJson(
              json_['notesPage'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );