ConsumerPartitionMetadata.fromJson constructor

ConsumerPartitionMetadata.fromJson(
  1. Map json_
)

Implementation

ConsumerPartitionMetadata.fromJson(core.Map json_)
  : this(
      metadata: json_['metadata'] as core.String?,
      offset: json_['offset'] as core.String?,
    );