setPointOfInitiationMethod method

dynamic setPointOfInitiationMethod(
  1. String? value
)

set point of initiation method

value is only No. length of value is 2.

Implementation

setPointOfInitiationMethod(String? value) {
  if (value != null) {
    if (value.length != 2) {
      throw ValueLengthErr(title: "PointOfInitiationMethod", length: "2");
    }
    var pointOfInitiationMethod = setTLV(value, ID.pointOfInitiationMethod);
    this.value =
        this.value.copyWith(pointOfInitiationMethod: pointOfInitiationMethod);
  }
}