KioskCustomization.fromJson constructor

KioskCustomization.fromJson(
  1. Map json_
)

Implementation

KioskCustomization.fromJson(core.Map json_)
    : this(
        deviceSettings: json_.containsKey('deviceSettings')
            ? json_['deviceSettings'] as core.String
            : null,
        powerButtonActions: json_.containsKey('powerButtonActions')
            ? json_['powerButtonActions'] as core.String
            : null,
        statusBar: json_.containsKey('statusBar')
            ? json_['statusBar'] as core.String
            : null,
        systemErrorWarnings: json_.containsKey('systemErrorWarnings')
            ? json_['systemErrorWarnings'] as core.String
            : null,
        systemNavigation: json_.containsKey('systemNavigation')
            ? json_['systemNavigation'] as core.String
            : null,
      );