LayoutReference.fromJson constructor

LayoutReference.fromJson(
  1. Map json_
)

Implementation

LayoutReference.fromJson(core.Map json_)
    : this(
        layoutId: json_.containsKey('layoutId')
            ? json_['layoutId'] as core.String
            : null,
        predefinedLayout: json_.containsKey('predefinedLayout')
            ? json_['predefinedLayout'] as core.String
            : null,
      );