HttpEndpointBufferingHints.fromJson constructor

HttpEndpointBufferingHints.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory HttpEndpointBufferingHints.fromJson(Map<String, dynamic> json) {
  return HttpEndpointBufferingHints(
    intervalInSeconds: json['IntervalInSeconds'] as int?,
    sizeInMBs: json['SizeInMBs'] as int?,
  );
}