NatrixChar constructor

NatrixChar(
  1. String c
)

Implementation

NatrixChar(this.c) {
  if (c.length > 1) {
    throw Exception("A character cannot be longer than 1 unit.");
  }
}