COSELabelInt.fromJson constructor

COSELabelInt.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory COSELabelInt.fromJson(Map<String, dynamic> json) {
  return COSELabelInt(BigintUtils.parse(json[COSELabelType.int.name]));
}