ARational constructor

const ARational({
  1. required String n,
  2. String d = "1",
})

Implementation

const ARational({required this.n, this.d = "1"});