TealValue constructor

TealValue({
  1. required String bytes,
  2. required int type,
  3. required BigInt uint,
})

Implementation

TealValue({
  required this.bytes,
  required this.type,
  required this.uint,
});