jsonInt method

JsonInt jsonInt(
  1. String name, [
  2. dynamic defaultJsonValue
])

Creates a entry of type JsonInt with a given name

Implementation

JsonInt jsonInt(String name, [dynamic defaultJsonValue]) =>
    jsonEntry<JsonInt>(name, JsonInt.new, defaultJsonValue);