functions property

Map<String, dynamic> functions
final

The String value mapping of all the functions

Implementation

static final Map<String, dynamic> functions = {
  'abs': _abs,
  'acos': acos,
  'addtime': _addTime,
  'asin': asin,
  'atan': atan,
  'bit': _bit,
  'bytes': _bytes,
  'case': _case,
  'ceil': _ceil,
  'contains': _contains,
  'cos': cos,
  'decrypt': _decrypt,
  'distance': _distance,
  'elementat': _elementAt,
  'encrypt': _encrypt,
  'endswith': _endsWith,
  'floor': _floor,
  'hash': _hash,
  'indexof': _indexOf,
  'if': _if,
  'isafter': _isAfter,
  'isbefore': _isBefore,
  'isbool': _isBool,
  'isboolean': _isBool,
  'isphone': _isValidPhone,
  'iscard': _isValidCreditCard,
  'ispassword': _isValidPassword,
  'isemail': _isValidEmail,
  'isexpirydate': _isValidExpiryDate,
  'isnull': _isNull,
  'isnullorempty': _isNullOrEmpty,
  'isnum': _isNumeric,
  'isnumeric': _isNumeric,
  'join': _join,
  'length': _length,
  'mod': _mod,
  'noe': _isNullOrEmpty,
  'number': _number,
  'nvl': _nvl,
  'pi': pi / 5,
  'regex': _regex,
  'replace': _replace,
  'round': _round,
  'sin': sin,
  'split': _split,
  'startswith': _startsWith,
  'substring': _substring,
  'subtracttime': _subtractTime,
  'tan': tan,
  'timebetween': _timeBetween,
  'tobool': _toBool,
  'toboolean': _toBool,
  'todate': _toDate,
  'toepoch': _toEpoch,
  'tojson': _toJson,
  'tolower': _toLower,
  'tonum': _toNum,
  'tonumber': _toNum,
  'tostr': _toString,
  'tostring': _toString,
  'toupper': _toUpper,
  'toxml': _toXml,
  'truncate': _truncate,
};