SlideProperties.fromJson constructor

SlideProperties.fromJson(
  1. Map json_
)

Implementation

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