BatchingSettingsProto.fromJson constructor

BatchingSettingsProto.fromJson(
  1. Map json_
)

Implementation

BatchingSettingsProto.fromJson(core.Map json_)
  : this(
      delayThreshold: json_['delayThreshold'] as core.String?,
      elementCountLimit: json_['elementCountLimit'] as core.int?,
      elementCountThreshold: json_['elementCountThreshold'] as core.int?,
      flowControlByteLimit: json_['flowControlByteLimit'] as core.int?,
      flowControlElementLimit: json_['flowControlElementLimit'] as core.int?,
      flowControlLimitExceededBehavior:
          json_['flowControlLimitExceededBehavior'] as core.String?,
      requestByteLimit: json_['requestByteLimit'] as core.int?,
      requestByteThreshold: json_['requestByteThreshold'] as core.String?,
    );