section method

  1. @MPI(name: "mesh.sequence.section")
Future<List<String>?> section(
  1. String kind,
  2. int size,
  3. int length, {
  4. Context? ctx,
})

Section 获取序列号段.

Parameters: kind - 类型 size - 号段大小 length - 长度

Implementation

@MPI(name: "mesh.sequence.section")
Future<List<String>?> section(String kind, int size, int length, {Context? ctx}) {
  throw UnimplementedError('section() has not been implemented.');
}