isSimpleJsonValue static method

bool isSimpleJsonValue(
  1. dynamic value
)

Implementation

static bool isSimpleJsonValue(dynamic value) =>
    value is int || value is double || value is bool || value is String;