isNested property

bool isNested

Implementation

bool get isNested {
  if (arguments != null && arguments is Map<String, dynamic>) {
    final isNestedValue = (arguments as Map<String, dynamic>)['isNested'];
    return isNestedValue != null && isNestedValue is bool && isNestedValue;
  }
  return false;
}