AppMakerSqlSetupNotification.fromJson constructor

AppMakerSqlSetupNotification.fromJson(
  1. Map _json
)

Implementation

AppMakerSqlSetupNotification.fromJson(core.Map _json)
    : this(
        requestInfo: _json.containsKey('requestInfo')
            ? (_json['requestInfo'] as core.List)
                .map<RequestInfo>((value) => RequestInfo.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );