ServerlessNegInfo.fromJson constructor

ServerlessNegInfo.fromJson(
  1. Map json_
)

Implementation

ServerlessNegInfo.fromJson(core.Map json_)
    : this(
        negUri: json_.containsKey('negUri')
            ? json_['negUri'] as core.String
            : null,
      );